Home
last modified time | relevance | path

Searched refs:cJSON_GetArraySize (Results 1 – 8 of 8) sorted by relevance

/third_party/vulkan-loader/loader/
DcJSON.h86 int cJSON_GetArraySize(cJSON *array);
Dloader.c2088 int count = cJSON_GetArraySize(component_layers); in loader_read_layer_json()
2138 props->num_blacklist_layers = cJSON_GetArraySize(blacklisted_layers); in loader_read_layer_json()
2174 int count = cJSON_GetArraySize(override_paths); in loader_read_layer_json()
2324 int count = cJSON_GetArraySize(instance_extensions); in loader_read_layer_json()
2353 int count = cJSON_GetArraySize(device_extensions); in loader_read_layer_json()
2374 entry_count = cJSON_GetArraySize(entrypoints); in loader_read_layer_json()
2474 props->num_app_key_paths = cJSON_GetArraySize(app_keys); in loader_read_layer_json()
2581 int numItems = cJSON_GetArraySize(layers_node); in loader_add_layer_properties()
DcJSON.c916 int cJSON_GetArraySize(cJSON *array) { in cJSON_GetArraySize() function
/third_party/cJSON/
DcJSON.h168 CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array);
DREADME.md238 To get the size of an array, use `cJSON_GetArraySize`. Use `cJSON_GetArrayItem` to get an element a…
255 To get the size of an object, you can use `cJSON_GetArraySize`, this works because internally objec…
DcJSON.c1829 CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array) in cJSON_GetArraySize() function
/third_party/musl/Benchmark/musl/
Dbenchmark_framework.cpp298 int arraySize = cJSON_GetArraySize(item); // Get the size of the array in RegisterJsonBenchmarks()
/third_party/cJSON/tests/
Dmisc_tests.c379 cJSON_GetArraySize(NULL); in cjson_functions_should_not_crash_with_null_pointers()