Lines Matching defs:string

122     /* The item's string, if type==cJSON_String  and type == cJSON_Raw */
134 /* The item's name string, if this item is the child of, or is in the list of subitems of an object. */
135 char *string;
153 /* returns the version of cJSON as a string */
184 /* Get item "string" from object. Case insensitive. */
185 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
186 CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string);
187 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
222 CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string);
228 /* Create a string where valuestring references a string so
230 CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string);
245 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item);
246 /* Use this when string is definitely const (i.e. a literal, or as good as), and will definitely survive the cJSON object.
248 * writing to `item->string` */
249 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item);
252 CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item);
258 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string);
259 CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string);
260 CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string);
261 CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string);
267 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
268 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object,const char *string,cJSON *newitem);
280 * The input pointer json cannot point to a read-only address area, such as a string constant,
294 CJSON_PUBLIC(cJSON*) cJSON_AddStringToObject(cJSON * const object, const char * const name, const char * const string);