Searched refs:cJSON_Object (Results 1 – 11 of 11) sorted by relevance
38 assert_has_type(object_item, cJSON_Object); in assert_is_object()126 cJSON_Object in parse_object_should_parse_objects_with_multiple_elements()
95 assert_parse_value("{}", cJSON_Object); in parse_value_should_parse_object()
127 cJSON_Object in parse_array_should_parse_arrays_with_multiple_elements()
362 TEST_ASSERT_EQUAL_INT(object->type, cJSON_Object); in cJSON_add_object_should_add_object()
197 item->type = cJSON_Object | cJSON_StringIsConst; in typecheck_functions_should_check_type()548 TEST_ASSERT_EQUAL_INT(cJSON_Object | cJSON_IsReference, number_reference->type); in cjson_create_object_reference_should_create_an_object_reference()
41 #define cJSON_Object 6 macro
553 case cJSON_Object: in print_value()577 case cJSON_Object: in print_value()726 item->type = cJSON_Object; in parse_object()1083 if (item) item->type = cJSON_Object; in cJSON_CreateObject()
1437 case cJSON_Object: in print_value()1703 item->type = cJSON_Object; in parse_object()2498 item->type = cJSON_Object | cJSON_IsReference; in cJSON_CreateObjectReference()2548 item->type = cJSON_Object; in cJSON_CreateObject()2983 return (item->type & 0xFF) == cJSON_Object; in cJSON_IsObject()3013 case cJSON_Object: in cJSON_Compare()3078 case cJSON_Object: in cJSON_Compare()
96 #define cJSON_Object (1 << 6) macro
655 case cJSON_Object: in compare_json()1215 case cJSON_Object: in create_patches()
220 * `cJSON_Object` (check with `cJSON_IsObject`): Represents an object value. Objects are stored same…