Lines Matching refs:value
1084 CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_b… in cJSON_ParseWithOpts() argument
1088 if (NULL == value) in cJSON_ParseWithOpts()
1094 buffer_length = strlen(value) + sizeof(""); in cJSON_ParseWithOpts()
1096 … return cJSON_ParseWithLengthOpts(value, buffer_length, return_parse_end, require_null_terminated); in cJSON_ParseWithOpts()
1100 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char… in cJSON_ParseWithLengthOpts() argument
1109 if (value == NULL || 0 == buffer_length) in cJSON_ParseWithLengthOpts()
1114 buffer.content = (const unsigned char*)value; in cJSON_ParseWithLengthOpts()
1153 if (value != NULL) in cJSON_ParseWithLengthOpts()
1156 local_error.json = (const unsigned char*)value; in cJSON_ParseWithLengthOpts()
1180 CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) in cJSON_Parse() argument
1182 return cJSON_ParseWithOpts(value, 0, 0); in cJSON_Parse()
1185 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) in cJSON_ParseWithLength() argument
1187 return cJSON_ParseWithLengthOpts(value, buffer_length, 0, 0); in cJSON_ParseWithLength()