Home
last modified time | relevance | path

Searched refs:cJSON_NULL (Results 1 – 10 of 10) sorted by relevance

/third_party/cJSON/tests/
Dparse_object.c103 assert_is_child(item->child, "null", cJSON_NULL); in parse_object_should_parse_objects_with_one_element()
121 cJSON_NULL, in parse_object_should_parse_objects_with_multiple_elements()
Dparse_array.c100 assert_has_type(item->child, cJSON_NULL); in parse_array_should_parse_arrays_with_one_element()
122 cJSON_NULL, in parse_array_should_parse_arrays_with_multiple_elements()
Dparse_value.c57 assert_parse_value("null", cJSON_NULL); in parse_value_should_parse_null()
Dcjson_add.c56 TEST_ASSERT_EQUAL_INT(null->type, cJSON_NULL); in cjson_add_null_should_add_null()
Dmisc_tests.c177 item->type = cJSON_NULL | cJSON_StringIsConst; in typecheck_functions_should_check_type()
/third_party/vulkan-loader/loader/
DcJSON.h37 #define cJSON_NULL 2 macro
DcJSON.c494 item->type = cJSON_NULL; in parse_value()
529 case cJSON_NULL: { in print_value()
559 case cJSON_NULL: in print_value()
1041 if (item) item->type = cJSON_NULL; in cJSON_CreateNull()
/third_party/cJSON/
DcJSON.c1328 item->type = cJSON_NULL; in parse_value()
1383 case cJSON_NULL: in print_value()
2400 item->type = cJSON_NULL; in cJSON_CreateNull()
2943 return (item->type & 0xFF) == cJSON_NULL; in cJSON_IsNull()
3008 case cJSON_NULL: in cJSON_Compare()
3031 case cJSON_NULL: in cJSON_Compare()
DcJSON.h92 #define cJSON_NULL (1 << 2) macro
DREADME.md216 * `cJSON_NULL` (check with `cJSON_IsNull`): Represents a `null` value.