Searched refs:cJSON_NULL (Results 1 – 10 of 10) sorted by relevance
103 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()
100 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()
57 assert_parse_value("null", cJSON_NULL); in parse_value_should_parse_null()
56 TEST_ASSERT_EQUAL_INT(null->type, cJSON_NULL); in cjson_add_null_should_add_null()
177 item->type = cJSON_NULL | cJSON_StringIsConst; in typecheck_functions_should_check_type()
37 #define cJSON_NULL 2 macro
494 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()
1328 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()
92 #define cJSON_NULL (1 << 2) macro
216 * `cJSON_NULL` (check with `cJSON_IsNull`): Represents a `null` value.