Home
last modified time | relevance | path

Searched refs:cJSON_IsString (Results 1 – 7 of 7) sorted by relevance

/third_party/cJSON/tests/
Dmisc_tests.c188 TEST_ASSERT_FALSE(cJSON_IsString(NULL)); in typecheck_functions_should_check_type()
189 TEST_ASSERT_FALSE(cJSON_IsString(invalid)); in typecheck_functions_should_check_type()
190 TEST_ASSERT_TRUE(cJSON_IsString(item)); in typecheck_functions_should_check_type()
393 TEST_ASSERT_FALSE(cJSON_IsString(NULL)); in cjson_functions_should_not_crash_with_null_pointers()
Dreadme_examples.c188 if (cJSON_IsString(name) && (name->valuestring != NULL)) in supports_full_hd()
Djson_patch_tests.c63 if (cJSON_IsString(comment)) in test_apply_patch()
/third_party/cJSON/
DcJSON.h189 CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item);
DcJSON_Utils.c745 if (!cJSON_IsString(operation)) in decode_patch_operation()
818 if (!cJSON_IsString(path)) in apply_patch()
DREADME.md199 * `cJSON_String` (check with `cJSON_IsString`): Represents a string value. It is stored in the form…
491 if (cJSON_IsString(name) && (name->valuestring != NULL))
521 …eady, so a `NULL` value is just propagated and `cJSON_IsNumber` and `cJSON_IsString` return `0` if…
DcJSON.c101 if (!cJSON_IsString(item)) in cJSON_GetStringValue()
2947 CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) in cJSON_IsString() function