Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/rk_pcba_test/cJSON/
H A DcJSON.c291 if (!strncmp(value,"false",5)) { item->type=cJSON_False; return value+5; } in parse_value()
309 case cJSON_False: out=cJSON_strdup("false");break; in print_value()
540 cJSON *cJSON_CreateFalse(void) {cJSON *item=cJSON_New_Item();if(item)item->type=cJSON_False;ret… in cJSON_CreateFalse()
541 …(int b) {cJSON *item=cJSON_New_Item();if(item)item->type=b?cJSON_True:cJSON_False;return item;} in cJSON_CreateBool()
H A DcJSON.h32 #define cJSON_False 0 macro
/OK3568_Linux_fs/app/lvgl_demo/cJSON/
H A DcJSON.c1326 item->type = cJSON_False; in parse_value()
1383 case cJSON_False: in print_value()
2403 item->type = cJSON_False; in cJSON_CreateFalse()
2414 item->type = boolean ? cJSON_True : cJSON_False; in cJSON_CreateBool()
2894 return (item->type & 0xFF) == cJSON_False; in cJSON_IsFalse()
2915 return (item->type & (cJSON_True | cJSON_False)) != 0; in cJSON_IsBool()
2987 case cJSON_False: in cJSON_Compare()
3010 case cJSON_False: in cJSON_Compare()
H A DcJSON.h90 #define cJSON_False (1 << 0) macro
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser_v2/j2s/
H A DcJSON.cpp1335 item->type = cJSON_False; in parse_value()
1392 case cJSON_False: in print_value()
2412 item->type = cJSON_False; in cJSON_CreateFalse()
2423 item->type = boolean ? cJSON_True : cJSON_False; in cJSON_CreateBool()
2907 return (item->type & 0xFF) == cJSON_False; in cJSON_IsFalse()
2928 return (item->type & (cJSON_True | cJSON_False)) != 0; in cJSON_IsBool()
3000 case cJSON_False: in cJSON_Compare()
3023 case cJSON_False: in cJSON_Compare()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/iq_parser_v2/j2s/
H A DcJSON.h85 #define cJSON_False (1 << 0) macro