Home
last modified time | relevance | path

Searched refs:cJSON_Raw (Results 1 – 6 of 6) sorted by relevance

/third_party/cJSON/tests/
Dcompare_tests.c131 raw1->type = cJSON_Raw; in cjson_compare_should_compare_raw()
132 raw2->type = cJSON_Raw; in cjson_compare_should_compare_raw()
Dcjson_add.c326 TEST_ASSERT_EQUAL_INT(raw->type, cJSON_Raw); in cjson_add_raw_should_add_raw()
Dmisc_tests.c202 item->type = cJSON_Raw | cJSON_StringIsConst; in typecheck_functions_should_check_type()
/third_party/cJSON/
DcJSON.c1413 case cJSON_Raw: in print_value()
2520 item->type = cJSON_Raw; in cJSON_CreateRaw()
2993 return (item->type & 0xFF) == cJSON_Raw; in cJSON_IsRaw()
3011 case cJSON_Raw: in cJSON_Compare()
3042 case cJSON_Raw: in cJSON_Compare()
DcJSON.h97 #define cJSON_Raw (1 << 7) /* raw json */ macro
DREADME.md221 * `cJSON_Raw` (check with `cJSON_IsRaw`): Represents any kind of JSON that is stored as a zero term…