Searched refs:cJSON_ReplaceItemInObject (Results 1 – 6 of 6) sorted by relevance
/third_party/cJSON/tests/ |
D | misc_tests.c | 343 cJSON_ReplaceItemInObject(root, "child", replacement); in cjson_replace_item_in_object_should_preserve_name() 436 TEST_ASSERT_FALSE(cJSON_ReplaceItemInObject(NULL, "item", item)); in cjson_functions_should_not_crash_with_null_pointers() 437 TEST_ASSERT_FALSE(cJSON_ReplaceItemInObject(item, NULL, item)); in cjson_functions_should_not_crash_with_null_pointers() 438 TEST_ASSERT_FALSE(cJSON_ReplaceItemInObject(item, "item", NULL)); in cjson_functions_should_not_crash_with_null_pointers()
|
/third_party/vulkan-loader/loader/ |
D | cJSON.h | 135 void cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem);
|
D | cJSON.c | 1028 void cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem) { in cJSON_ReplaceItemInObject() function
|
/third_party/cJSON/ |
D | cJSON.h | 245 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
|
D | CHANGELOG.md | 225 * Fix `cJSON_ReplaceItemInObject` not keeping the name of an item, see [#174](https://github.com/Da…
|
D | cJSON.c | 2384 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newite… in cJSON_ReplaceItemInObject() function
|