Home
last modified time | relevance | path

Searched refs:cJSON_bool (Results 1 – 2 of 2) sorted by relevance

/petsc/src/mat/tests/
H A DcJSON.h128 typedef int cJSON_bool; typedef
148 … cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_ter…
149 …onst char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool require_null_ter…
156 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt);
159 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const…
170 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
179 CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON *const item);
180 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON *const item);
181 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON *const item);
182 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON *const item);
[all …]
H A DcJSON.c65 #define true ((cJSON_bool)1)
70 #define false ((cJSON_bool)0)
258 static cJSON_bool parse_number(cJSON *const item, parse_buffer *const input_buffer) in parse_number()
357 cJSON_bool noalloc;
358 cJSON_bool format; /* is this print a formatted print */
438 static cJSON_bool compare_double(double a, double b) in compare_double()
445 static cJSON_bool print_number(const cJSON *const item, printbuffer *const output_buffer) in print_number()
624 static cJSON_bool parse_string(cJSON *const item, parse_buffer *const input_buffer) in parse_string()
725 static cJSON_bool print_string_ptr(const unsigned char *const input, printbuffer *const output_buff… in print_string_ptr()
828 static cJSON_bool print_string(const cJSON *const item, printbuffer *const p) in print_string()
[all …]