Home
last modified time | relevance | path

Searched refs:cJSON_DetachItemFromObjectCaseSensitive (Results 1 – 5 of 5) sorted by relevance

/third_party/cJSON/tests/
Dmisc_tests.c422 TEST_ASSERT_NULL(cJSON_DetachItemFromObjectCaseSensitive(NULL, "item")); in cjson_functions_should_not_crash_with_null_pointers()
423 TEST_ASSERT_NULL(cJSON_DetachItemFromObjectCaseSensitive(item, NULL)); in cjson_functions_should_not_crash_with_null_pointers()
/third_party/cJSON/
DcJSON.h237 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string);
DREADME.md249 If you want to take an item out of an object, use `cJSON_DetachItemFromObjectCaseSensitive`, it wil…
251 …cJSON_DeleteItemFromObjectCaseSensitive`. It works like `cJSON_DetachItemFromObjectCaseSensitive` …
DcJSON.c2246 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) in cJSON_DetachItemFromObjectCaseSensitive() function
2260 cJSON_Delete(cJSON_DetachItemFromObjectCaseSensitive(object, string)); in cJSON_DeleteItemFromObjectCaseSensitive()
DcJSON_Utils.c1360 replace_me = cJSON_DetachItemFromObjectCaseSensitive(target, patch_child->string); in merge_patch()