Home
last modified time | relevance | path

Searched refs:cJSON_Array (Results 1 – 11 of 11) sorted by relevance

/third_party/cJSON/tests/
Dparse_array.c38 assert_has_type(array_item, cJSON_Array); in assert_is_array()
94 assert_has_type(item->child, cJSON_Array); in parse_array_should_parse_arrays_with_one_element()
125 cJSON_Array, in parse_array_should_parse_arrays_with_multiple_elements()
Dparse_object.c99 assert_is_child(item->child, "array", cJSON_Array); in parse_object_should_parse_objects_with_one_element()
124 cJSON_Array, in parse_object_should_parse_objects_with_multiple_elements()
Dparse_value.c89 assert_parse_value("[]", cJSON_Array); in parse_value_should_parse_array()
Dcjson_add.c397 TEST_ASSERT_EQUAL_INT(array->type, cJSON_Array); in cJSON_add_array_should_add_array()
Dmisc_tests.c192 item->type = cJSON_Array | cJSON_StringIsConst; in typecheck_functions_should_check_type()
566 TEST_ASSERT_EQUAL_INT(cJSON_Array | cJSON_IsReference, number_reference->type); in cjson_create_array_reference_should_create_an_array_reference()
/third_party/vulkan-loader/loader/
DcJSON.h40 #define cJSON_Array 5 macro
DcJSON.c550 case cJSON_Array: in print_value()
574 case cJSON_Array: in print_value()
593 item->type = cJSON_Array; in parse_array()
1078 if (item) item->type = cJSON_Array; in cJSON_CreateArray()
/third_party/cJSON/
DcJSON.c1434 case cJSON_Array: in print_value()
1527 item->type = cJSON_Array; in parse_array()
2508 item->type = cJSON_Array | cJSON_IsReference; in cJSON_CreateArrayReference()
2537 item->type=cJSON_Array; in cJSON_CreateArray()
2973 return (item->type & 0xFF) == cJSON_Array; in cJSON_IsArray()
3012 case cJSON_Array: in cJSON_Compare()
3054 case cJSON_Array: in cJSON_Compare()
DcJSON.h95 #define cJSON_Array (1 << 5) macro
DcJSON_Utils.c635 case cJSON_Array: in compare_json()
1170 case cJSON_Array: in create_patches()
DREADME.md219 * `cJSON_Array` (check with `cJSON_IsArray`): Represent an array value. This is implemented by poin…