Searched refs:cJSON_ArrayForEach (Results 1 – 7 of 7) sorted by relevance
/third_party/cJSON/tests/ |
D | json_patch_tests.c | 189 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()
|
D | readme_examples.c | 194 cJSON_ArrayForEach(resolution, resolutions) in supports_full_hd()
|
D | misc_tests.c | 53 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/ |
D | cJSON.h | 283 #define cJSON_ArrayForEach(element, array) for(element = (array != NULL) ? (array)->child : NULL; e… macro
|
D | README.md | 240 …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)
|
D | cJSON.c | 3063 cJSON_ArrayForEach(a_element, a) in cJSON_Compare() 3080 cJSON_ArrayForEach(b_element, b) in cJSON_Compare()
|
D | CHANGELOG.md | 321 * Fix handling of NULL pointers in `cJSON_ArrayForEach`, see [b47d0e3](https://github.com/DaveGambl…
|