Home
last modified time | relevance | path

Searched refs:cJSON_String (Results 1 – 2 of 2) sorted by relevance

/petsc/src/mat/tests/
H A DcJSON.c339 if (!(object->type & cJSON_String) || (object->type & cJSON_IsReference)) return NULL; in cJSON_SetValuestring()
708 item->type = cJSON_String; in parse_string()
1127 case cJSON_String: in print_value()
1880 item->type = cJSON_String; in cJSON_CreateString()
1895 item->type = cJSON_String | cJSON_IsReference; in cJSON_CreateStringReference()
2261 return (item->type & 0xFF) == cJSON_String; in cJSON_IsString()
2295 case cJSON_String: in cJSON_Compare()
2319 case cJSON_String: in cJSON_Compare()
H A DcJSON.h92 #define cJSON_String (1 << 4) macro