Lines Matching refs:item
49 struct cJSON *child; /* An array or object item will have a child pointer
53 int type; /* The type of the item, as above. */
55 char *valuestring; /* The item's string, if type==cJSON_String */
56 int valueint; /* The item's number, if type==cJSON_Number */
57 double valuedouble; /* The item's number, if type==cJSON_Number */
59 char *string; /* The item's name string, if this item is the child of, or is
67 char *loader_cJSON_Print(cJSON *item);
70 char *loader_cJSON_PrintUnformatted(cJSON *item);
76 /* Retrieve item number "item" from array "array". Returns NULL if unsuccessful.
78 cJSON *loader_cJSON_GetArrayItem(cJSON *array, int item);
79 /* Get item "string" from object. Case insensitive. */