Home
last modified time | relevance | path

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

/third_party/cJSON/tests/
Dparse_object.c38 assert_has_type(object_item, cJSON_Object); in assert_is_object()
126 cJSON_Object in parse_object_should_parse_objects_with_multiple_elements()
Dparse_value.c95 assert_parse_value("{}", cJSON_Object); in parse_value_should_parse_object()
Dparse_array.c127 cJSON_Object in parse_array_should_parse_arrays_with_multiple_elements()
Dcjson_add.c362 TEST_ASSERT_EQUAL_INT(object->type, cJSON_Object); in cJSON_add_object_should_add_object()
Dmisc_tests.c197 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()
/third_party/vulkan-loader/loader/
DcJSON.h41 #define cJSON_Object 6 macro
DcJSON.c553 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()
/third_party/cJSON/
DcJSON.c1437 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()
DcJSON.h96 #define cJSON_Object (1 << 6) macro
DcJSON_Utils.c655 case cJSON_Object: in compare_json()
1215 case cJSON_Object: in create_patches()
DREADME.md220 * `cJSON_Object` (check with `cJSON_IsObject`): Represents an object value. Objects are stored same…