Searched refs:cJSON_Array (Results 1 – 11 of 11) sorted by relevance
38 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()
99 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()
89 assert_parse_value("[]", cJSON_Array); in parse_value_should_parse_array()
397 TEST_ASSERT_EQUAL_INT(array->type, cJSON_Array); in cJSON_add_array_should_add_array()
192 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()
40 #define cJSON_Array 5 macro
550 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()
1434 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()
95 #define cJSON_Array (1 << 5) macro
635 case cJSON_Array: in compare_json()1170 case cJSON_Array: in create_patches()
219 * `cJSON_Array` (check with `cJSON_IsArray`): Represent an array value. This is implemented by poin…