Lines Matching defs:object
34 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointer(cJSON * const object, const char *pointer);
35 CJSON_PUBLIC(cJSON *) cJSONUtils_GetPointerCaseSensitive(cJSON * const object, const char *pointer);
44 CJSON_PUBLIC(int) cJSONUtils_ApplyPatches(cJSON * const object, const cJSON * const patches);
45 CJSON_PUBLIC(int) cJSONUtils_ApplyPatchesCaseSensitive(cJSON * const object, const cJSON * const patches);
49 //int cJSONUtils_AtomicApplyPatches(cJSON **object, cJSON *patches)
51 // cJSON *modme = cJSON_Duplicate(*object, 1);
55 // cJSON_Delete(*object);
56 // *object = modme;
77 /* Given a root object and a target object, construct a pointer from one to the other. */
78 CJSON_PUBLIC(char *) cJSONUtils_FindPointerFromObjectTo(const cJSON * const object, const cJSON * const target);
80 /* Sorts the members of the object into alphabetical order. */
81 CJSON_PUBLIC(void) cJSONUtils_SortObject(cJSON * const object);
82 CJSON_PUBLIC(void) cJSONUtils_SortObjectCaseSensitive(cJSON * const object);