Searched refs:cJSON_ReplaceItemInArray (Results 1 – 6 of 6) sorted by relevance
/third_party/vulkan-loader/loader/ |
D | cJSON.h | 134 void cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem);
|
D | cJSON.c | 1014 void cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem) { in cJSON_ReplaceItemInArray() function 1034 cJSON_ReplaceItemInArray(object, i, newitem); in cJSON_ReplaceItemInObject()
|
/third_party/cJSON/ |
D | cJSON.h | 244 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem);
|
D | README.md | 255 You can also replace an item in an array in place. Either with `cJSON_ReplaceItemInArray` using an …
|
D | cJSON.c | 2351 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem) in cJSON_ReplaceItemInArray() function
|
/third_party/cJSON/tests/ |
D | misc_tests.c | 434 TEST_ASSERT_FALSE(cJSON_ReplaceItemInArray(item, 0, NULL)); in cjson_functions_should_not_crash_with_null_pointers() 435 TEST_ASSERT_FALSE(cJSON_ReplaceItemInArray(NULL, 0, item)); in cjson_functions_should_not_crash_with_null_pointers()
|