Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/rk_pcba_test/cJSON/
H A DcJSON.c292 if (!strncmp(value,"true",4)) { item->type=cJSON_True; item->valueint=1; return value+4; } in parse_value()
310 case cJSON_True: out=cJSON_strdup("true"); break; in print_value()
539 cJSON *cJSON_CreateTrue(void) {cJSON *item=cJSON_New_Item();if(item)item->type=cJSON_True;retur… in cJSON_CreateTrue()
541 cJSON *cJSON_CreateBool(int b) {cJSON *item=cJSON_New_Item();if(item)item->type=b?cJSON_True:cJ… in cJSON_CreateBool()
H A DcJSON.h33 #define cJSON_True 1 macro
/OK3568_Linux_fs/app/lvgl_demo/cJSON/
H A DcJSON.c1333 item->type = cJSON_True; in parse_value()
1392 case cJSON_True: in print_value()
2392 item->type = cJSON_True; in cJSON_CreateTrue()
2414 item->type = boolean ? cJSON_True : cJSON_False; in cJSON_CreateBool()
2904 return (item->type & 0xff) == cJSON_True; in cJSON_IsTrue()
2915 return (item->type & (cJSON_True | cJSON_False)) != 0; in cJSON_IsBool()
2988 case cJSON_True: in cJSON_Compare()
3011 case cJSON_True: in cJSON_Compare()
H A DcJSON.h91 #define cJSON_True (1 << 1) macro
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser_v2/j2s/
H A DcJSON.cpp1342 item->type = cJSON_True; in parse_value()
1401 case cJSON_True: in print_value()
2401 item->type = cJSON_True; in cJSON_CreateTrue()
2423 item->type = boolean ? cJSON_True : cJSON_False; in cJSON_CreateBool()
2917 return (item->type & 0xff) == cJSON_True; in cJSON_IsTrue()
2928 return (item->type & (cJSON_True | cJSON_False)) != 0; in cJSON_IsBool()
3001 case cJSON_True: in cJSON_Compare()
3024 case cJSON_True: in cJSON_Compare()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/iq_parser_v2/j2s/
H A DcJSON.h86 #define cJSON_True (1 << 1) macro