Lines Matching defs:value
1322 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated)
1326 if (NULL == value)
1332 buffer_length = strlen(value) + sizeof("");
1334 return cJSON_ParseWithLengthOpts(value, buffer_length, return_parse_end, require_null_terminated);
1338 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool require_null_terminated)
1347 if (value == NULL || 0 == buffer_length)
1352 buffer.content = (const unsigned char*)value;
1391 if (value != NULL)
1394 local_error.json = (const unsigned char*)value;
1418 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value)
1420 return cJSON_ParseWithOpts(value, 0, 0);
1423 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length)
1425 return cJSON_ParseWithLengthOpts(value, buffer_length, 0, 0);
1448 /* print the value */
1609 /* Render a value to text. */
1742 /* parse next value */
1747 goto fail; /* failed to parse value */
1923 /* parse the value */
1928 goto fail; /* failed to parse value */
2026 /* print value */