Home
last modified time | relevance | path

Searched refs:cJSON_GetArrayItem (Results 1 – 4 of 4) sorted by relevance

/external/vulkan-validation-layers/libs/cjson/includes/
DcJSON.h94 extern cJSON *cJSON_GetArrayItem(cJSON *array, int item);
/external/vulkan-validation-layers/libs/vkjson/
Dvkjson.cc530 if (!AsValue(cJSON_GetArrayItem(json_value, i), values + i)) in AsArray()
578 return AsValue(cJSON_GetArrayItem(json_value, 0), &value->first) && in AsValue()
579 AsValue(cJSON_GetArrayItem(json_value, 1), &value->second); in AsValue()
589 if (!AsValue(cJSON_GetArrayItem(json_value, i), &elem)) in AsValue()
/external/vulkan-validation-layers/loader/
Dloader.c2325 ext_item = cJSON_GetArrayItem(instance_extensions, i);
2358 ext_item = cJSON_GetArrayItem(device_extensions, i);
2386 ext_item = cJSON_GetArrayItem(entrypoints, j);
2496 layer_node = cJSON_GetArrayItem(layers_node, curLayer);
/external/vulkan-validation-layers/libs/cjson/
DcJSON.c1019 cJSON *cJSON_GetArrayItem(cJSON *array, int item) { in cJSON_GetArrayItem() function