Lines Matching refs:first
161 if (it->first <= m_context.getUsedApiVersion())
460 if (deStringEqual(testsArr[ndx].first, "vkGetInstanceProcAddr") || deStringEqual(testsArr[ndx].first, "vkEnumerateInstanceVersion"))
463 const char* functionName = testsArr[ndx].first;
483 checkPlatformFunction(ctx, log, testsArr[ndx].first, DE_FALSE, failsQuantity);
485 checkInstanceFunction(ctx, log, testsArr[ndx].first, DE_FALSE, failsQuantity);
487 checkDeviceFunction(ctx, log, testsArr[ndx].first, DE_FALSE, failsQuantity);
498 const auto& funcName = testsArr[ndx].first;
578 if (testedApiVersion.first > supportedApiVersion)
582 if (testedApiVersion.first == functionsPerVersion.rbegin()->first)
588 appInfo.apiVersion = testedApiVersion.first;
632 << VK_API_VERSION_MAJOR(testedApiVersion.first) << ", "
633 << VK_API_VERSION_MINOR(testedApiVersion.first) << ")" << tcu::TestLog::EndMessage;
640 if (versionFunctions.first <= testedApiVersion.first)
656 const auto& funcName = function.first;
657 const auto isMatch = [&funcName](const FunctionInfo& fi) { return !strcmp(funcName, fi.first); };