Searched refs:cJSON_InsertItemInArray (Results 1 – 6 of 6) sorted by relevance
| /third_party/cJSON/tests/ |
| D | misc_tests.c | 428 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(array, 0, NULL)); in cjson_functions_should_not_crash_with_null_pointers() 429 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(array, 1, item)); in cjson_functions_should_not_crash_with_null_pointers() 430 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(NULL, 0, item)); in cjson_functions_should_not_crash_with_null_pointers() 431 TEST_ASSERT_FALSE(cJSON_InsertItemInArray(item, 0, NULL)); in cjson_functions_should_not_crash_with_null_pointers()
|
| /third_party/vulkan-loader/loader/ |
| D | cJSON.h | 133 void cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shifts pre-existing items…
|
| D | cJSON.c | 999 void cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) { in cJSON_InsertItemInArray() function
|
| /third_party/cJSON/ |
| D | cJSON.h | 242 CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shift…
|
| D | README.md | 230 To insert items in the middle, use `cJSON_InsertItemInArray`. It will insert an item at the given 0…
|
| D | cJSON.c | 2264 CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) in cJSON_InsertItemInArray() function
|