Home
last modified time | relevance | path

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

/third_party/cJSON/
DcJSON.h90 #define cJSON_False (1 << 0) macro
284 (object != NULL && ((object)->type & (cJSON_False|cJSON_True))) ? \
285 …(object)->type=((object)->type &(~(cJSON_False|cJSON_True)))|((boolValue)?cJSON_True:cJSON_False) …
DcJSON.c1335 item->type = cJSON_False; in parse_value()
1392 case cJSON_False: in print_value()
2422 item->type = cJSON_False; in cJSON_CreateFalse()
2433 item->type = boolean ? cJSON_True : cJSON_False; in cJSON_CreateBool()
2913 return (item->type & 0xFF) == cJSON_False; in cJSON_IsFalse()
2934 return (item->type & (cJSON_True | cJSON_False)) != 0; in cJSON_IsBool()
3006 case cJSON_False: in cJSON_Compare()
3029 case cJSON_False: in cJSON_Compare()
DREADME.md214 * `cJSON_False` (check with `cJSON_IsFalse`): Represents a `false` boolean value. You can also chec…
/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()
688 TEST_ASSERT_TRUE((cJSON_SetBoolValue(bobj, 0) == cJSON_False)); in cjson_set_bool_value_must_not_break_objects()
/third_party/vulkan-loader/loader/
DcJSON.c498 item->type = cJSON_False; in parse_value()
534 case cJSON_False: { in print_value()
562 case cJSON_False: in print_value()
1051 if (item) item->type = cJSON_False; in cJSON_CreateFalse()
1056 if (item) item->type = b ? cJSON_True : cJSON_False; in cJSON_CreateBool()
DcJSON.h35 #define cJSON_False 0 macro