Lines Matching refs:pPretty
214839 static void jsonPrettyIndent(JsonPretty *pPretty){ argument
214841 for(jj=0; jj<pPretty->nIndent; jj++){
214842 jsonAppendRaw(pPretty->pOut, pPretty->zIndent, pPretty->szIndent);
214864 JsonPretty *pPretty, /* Pretty-printing context */ argument
214868 JsonParse *pParse = pPretty->pParse;
214869 JsonString *pOut = pPretty->pOut;
214882 pPretty->nIndent++;
214883 if( pPretty->nIndent >= JSON_MAX_DEPTH ){
214887 jsonPrettyIndent(pPretty);
214888 j = jsonTranslateBlobToPrettyText(pPretty, j);
214893 pPretty->nIndent--;
214894 jsonPrettyIndent(pPretty);
214906 pPretty->nIndent++;
214907 if( pPretty->nIndent >= JSON_MAX_DEPTH ){
214910 pParse->iDepth = pPretty->nIndent;
214912 jsonPrettyIndent(pPretty);
214919 j = jsonTranslateBlobToPrettyText(pPretty, j);
214924 pPretty->nIndent--;
214925 jsonPrettyIndent(pPretty);