Lines Matching refs:jsonParseAddNode
687 static int jsonParseAddNode(JsonParse*,u32,u32,const char*);
721 return jsonParseAddNode(pParse, eType, n, zContent); in jsonParseAddNodeExpand()
729 static int jsonParseAddNode( in jsonParseAddNode() function
775 iThis = jsonParseAddNode(pParse, JSON_OBJECT, 0, 0); in jsonParseValue()
808 iThis = jsonParseAddNode(pParse, JSON_ARRAY, 0, 0); in jsonParseValue()
853 jsonParseAddNode(pParse, JSON_STRING, j+1-i, &z[i]); in jsonParseValue()
859 jsonParseAddNode(pParse, JSON_NULL, 0, 0); in jsonParseValue()
864 jsonParseAddNode(pParse, JSON_TRUE, 0, 0); in jsonParseValue()
869 jsonParseAddNode(pParse, JSON_FALSE, 0, 0); in jsonParseValue()
905 jsonParseAddNode(pParse, seenDP ? JSON_REAL : JSON_INT, in jsonParseValue()
1150 iStart = jsonParseAddNode(pParse, JSON_OBJECT, 2, 0); in jsonLookupStep()
1151 iLabel = jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); in jsonLookupStep()
1228 iStart = jsonParseAddNode(pParse, JSON_ARRAY, 1, 0); in jsonLookupStep()
1258 jsonParseAddNode(pParse, JSON_NULL, 0, 0); in jsonLookupAppend()
1262 jsonParseAddNode(pParse, JSON_OBJECT, 0, 0); in jsonLookupAppend()
1264 jsonParseAddNode(pParse, JSON_ARRAY, 0, 0); in jsonLookupAppend()
1674 iStart = jsonParseAddNode(pParse, JSON_OBJECT, 2, 0); in jsonMergePatch()
1675 jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); in jsonMergePatch()
1676 iPatch = jsonParseAddNode(pParse, JSON_TRUE, 0, 0); in jsonMergePatch()