Home
last modified time | relevance | path

Searched refs:cJSON_False (Results 1 – 8 of 8) sorted by relevance

/third_party/cJSON/tests/
Dparse_value.c69 assert_parse_value("false", cJSON_False); in parse_value_should_parse_false()
Dcjson_add.c172 TEST_ASSERT_EQUAL_INT(false_item->type, cJSON_False); in cjson_add_false_should_add_false()
214 TEST_ASSERT_EQUAL_INT(false_item->type, cJSON_False); in cjson_add_bool_should_add_bool()
Dparse_object.c123 cJSON_False, in parse_object_should_parse_objects_with_multiple_elements()
Dparse_array.c124 cJSON_False, in parse_array_should_parse_arrays_with_multiple_elements()
Dmisc_tests.c158 item->type = cJSON_False; in typecheck_functions_should_check_type()
165 item->type = cJSON_False | cJSON_StringIsConst; in typecheck_functions_should_check_type()
/third_party/cJSON/
DcJSON.c1326 item->type = cJSON_False; in parse_value()
1383 case cJSON_False: in print_value()
2403 item->type = cJSON_False; in cJSON_CreateFalse()
2414 item->type = boolean ? cJSON_True : cJSON_False; in cJSON_CreateBool()
2894 return (item->type & 0xFF) == cJSON_False; in cJSON_IsFalse()
2915 return (item->type & (cJSON_True | cJSON_False)) != 0; in cJSON_IsBool()
2987 case cJSON_False: in cJSON_Compare()
3010 case cJSON_False: in cJSON_Compare()
DcJSON.h90 #define cJSON_False (1 << 0) macro
DREADME.md195 * `cJSON_False` (check with `cJSON_IsFalse`): Represents a `false` boolean value. You can also chec…