Home
last modified time | relevance | path

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

/third_party/cJSON/tests/
Djson_patch_tests.c189 cJSON_ArrayForEach(test, tests) in cjson_utils_should_pass_json_patch_test_tests()
206 cJSON_ArrayForEach(test, tests) in cjson_utils_should_pass_json_patch_test_spec_tests()
223 cJSON_ArrayForEach(test, tests) in cjson_utils_should_pass_json_patch_test_cjson_utils_tests()
Dreadme_examples.c194 cJSON_ArrayForEach(resolution, resolutions) in supports_full_hd()
Dmisc_tests.c53 cJSON_ArrayForEach(element_pointer, array) in cjson_array_foreach_should_loop_over_arrays()
64 cJSON_ArrayForEach(element, array); in cjson_array_foreach_should_not_dereference_null_pointer()
/third_party/cJSON/
DcJSON.h283 #define cJSON_ArrayForEach(element, array) for(element = (array != NULL) ? (array)->child : NULL; e… macro
DREADME.md240 …inefficient (`O(n²)`), so you can iterate over an array using the `cJSON_ArrayForEach` macro in `O…
259 To iterate over an object, you can use the `cJSON_ArrayForEach` macro the same way as for arrays.
497 cJSON_ArrayForEach(resolution, resolutions)
DcJSON.c3063 cJSON_ArrayForEach(a_element, a) in cJSON_Compare()
3080 cJSON_ArrayForEach(b_element, b) in cJSON_Compare()
DCHANGELOG.md321 * Fix handling of NULL pointers in `cJSON_ArrayForEach`, see [b47d0e3](https://github.com/DaveGambl…