Searched refs:cJSON_False (Results 1 – 8 of 8) sorted by relevance
69 assert_parse_value("false", cJSON_False); in parse_value_should_parse_false()
172 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()
123 cJSON_False, in parse_object_should_parse_objects_with_multiple_elements()
124 cJSON_False, in parse_array_should_parse_arrays_with_multiple_elements()
158 item->type = cJSON_False; in typecheck_functions_should_check_type()165 item->type = cJSON_False | cJSON_StringIsConst; in typecheck_functions_should_check_type()
1326 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()
90 #define cJSON_False (1 << 0) macro
195 * `cJSON_False` (check with `cJSON_IsFalse`): Represents a `false` boolean value. You can also chec…