Home
last modified time | relevance | path

Searched refs:cJSON_AddItemToArray (Results 1 – 7 of 7) sorted by relevance

/third_party/cJSON/tests/
Dmisc_tests.c311 cJSON_AddItemToArray(array, beginning); in cjson_replace_item_via_pointer_should_replace_items()
312 cJSON_AddItemToArray(array, middle); in cjson_replace_item_via_pointer_should_replace_items()
313 cJSON_AddItemToArray(array, end); in cjson_replace_item_via_pointer_should_replace_items()
412 cJSON_AddItemToArray(NULL, item); in cjson_functions_should_not_crash_with_null_pointers()
413 cJSON_AddItemToArray(item, NULL); in cjson_functions_should_not_crash_with_null_pointers()
572 cJSON_AddItemToArray(number_array, number); in cjson_create_array_reference_should_create_an_array_reference()
591 flag = cJSON_AddItemToArray(array, array); in cjson_add_item_to_object_or_array_should_not_add_itself()
632 cJSON_AddItemToArray(array, item1); in cjson_delete_item_from_array_should_not_broken_list_structure()
637 cJSON_AddItemToArray(array, item2); in cjson_delete_item_from_array_should_not_broken_list_structure()
Dreadme_examples.c89 cJSON_AddItemToArray(resolutions, resolution); in create_monitor()
155 cJSON_AddItemToArray(resolutions, resolution); in create_monitor_with_helpers()
/third_party/cJSON/
Dtest.c197 cJSON_AddItemToArray(root, cJSON_CreateIntArray(numbers[i], 3)); in create_objects()
230 cJSON_AddItemToArray(root, fld = cJSON_CreateObject()); in create_objects()
DcJSON_Utils.c725 cJSON_AddItemToArray(array, newitem); in insert_item_in_array()
1002 cJSON_AddItemToArray(parent, value); in apply_patch()
1150 cJSON_AddItemToArray(patches, patch); in compose_patch()
DcJSON.h244 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item);
DREADME.md248 To add items to an array, use `cJSON_AddItemToArray` to append items to the end.
400 cJSON_AddItemToArray(resolutions, resolution);
471 cJSON_AddItemToArray(resolutions, resolution);
DcJSON.c2238 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item) in cJSON_AddItemToArray() function