Home
last modified time | relevance | path

Searched refs:cJSON_IsArray (Results 1 – 6 of 6) sorted by relevance

/third_party/cJSON/tests/
Dmisc_tests.c193 TEST_ASSERT_FALSE(cJSON_IsArray(NULL)); in typecheck_functions_should_check_type()
194 TEST_ASSERT_FALSE(cJSON_IsArray(invalid)); in typecheck_functions_should_check_type()
195 TEST_ASSERT_TRUE(cJSON_IsArray(item)); in typecheck_functions_should_check_type()
381 TEST_ASSERT_FALSE(cJSON_IsArray(NULL)); in cjson_functions_should_not_crash_with_null_pointers()
538 TEST_ASSERT_TRUE(cJSON_IsArray(number_array)); in cjson_create_array_reference_should_create_an_array_reference()
Djson_patch_tests.c42 TEST_ASSERT_TRUE_MESSAGE(cJSON_IsArray(json), "Json is not an array."); in parse_test_file()
/third_party/cJSON/
DcJSON_Utils.c221 if (cJSON_IsArray(object)) in cJSONUtils_FindPointerFromObjectTo()
314 if (cJSON_IsArray(current_element)) in get_item_from_pointer()
455 if (cJSON_IsArray(parent)) in detach_path()
981 else if (cJSON_IsArray(parent)) in apply_patch()
1043 if (!cJSON_IsArray(patches)) in cJSONUtils_ApplyPatches()
1072 if (!cJSON_IsArray(patches)) in cJSONUtils_ApplyPatchesCaseSensitive()
DcJSON.h190 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);
DREADME.md200 * `cJSON_Array` (check with `cJSON_IsArray`): Represent an array value. This is implemented by poin…
DcJSON.c2947 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) in cJSON_IsArray() function