Searched refs:cJSON_IsReference (Results 1 – 2 of 2) sorted by relevance
266 if (!(item->type & cJSON_IsReference) && (item->child != NULL)) in cJSON_Delete()270 if (!(item->type & cJSON_IsReference) && (item->valuestring != NULL)) in cJSON_Delete()411 if (!(object->type & cJSON_String) || (object->type & cJSON_IsReference)) in cJSON_SetValuestring()1948 reference->type |= cJSON_IsReference; in create_reference()2464 item->type = cJSON_String | cJSON_IsReference; in cJSON_CreateStringReference()2475 item->type = cJSON_Object | cJSON_IsReference; in cJSON_CreateObjectReference()2485 item->type = cJSON_Array | cJSON_IsReference; in cJSON_CreateArrayReference()2695 newitem->type = item->type & (~cJSON_IsReference); in cJSON_Duplicate()
104 #define cJSON_IsReference 256 macro