Home
last modified time | relevance | path

Searched refs:testCasePath (Results 1 – 9 of 9) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.hpp44 std::string testCasePath; member
48 : testCasePath (testCasePath_) in ProgramIdentifier()
56 …return (a.testCasePath < b.testCasePath) || ((a.testCasePath == b.testCasePath) && (a.programName … in operator <()
63 …: tcu::ResourceError("Program " + id.testCasePath + " / '" + id.programName + "' not found: " + re… in ProgramNotFoundException()
DvkBinaryRegistry.cpp170 const std::string combinedStr = id.testCasePath + '#' + id.programName; in getSearchPath()
/third_party/typescript/scripts/
DimportDefinitelyTypedTests.mjs91 const testCasePath = path.join(rwcTestPath, "DefinitelyTyped_" + testCaseName + ".json");
92 copyFileSync(outputFilePath, testCasePath);
96 if (!fs.existsSync(testCasePath)) {
97 throw new Error("could not find test case at: " + testCasePath);
102 //console.log("testcase generated at: " + testCasePath);
/third_party/vk-gl-cts/framework/platform/android/
DtcuTestLogParserJNI.cpp53 void beginTestCase (const char* testCasePath);
128 void TestLogListener::beginTestCase (const char* testCasePath) in beginTestCase() argument
130 jstring jTestCasePath = m_env->NewStringUTF(testCasePath); in beginTestCase()
/third_party/vk-gl-cts/framework/qphelper/
DqpTestLog.c429 deBool qpTestLog_startCase (qpTestLog* log, const char* testCasePath, qpTestCaseType testCaseType) in qpTestLog_startCase() argument
435 DE_ASSERT(log && testCasePath && (testCasePath[0] != 0)); in qpTestLog_startCase()
443 fprintf(log->outputFile, "\n#beginTestCaseResult %s\n", testCasePath); in qpTestLog_startCase()
451 resultAttribs[numResultAttribs++] = qpSetStringAttrib("CasePath", testCasePath); in qpTestLog_startCase()
DqpTestLog.h205 deBool qpTestLog_startCase (qpTestLog* log, const char* testCasePath, qpTestCaseType testCaseT…
/third_party/vk-gl-cts/framework/common/
DtcuTestLog.cpp450 void TestLog::startCase (const char* testCasePath, qpTestCaseType testCaseType) in startCase() argument
452 if (qpTestLog_startCase(m_log, testCasePath, testCaseType) == DE_FALSE) in startCase()
DtcuTestLog.hpp162 void startCase (const char* testCasePath, qpTestCaseType testCaseType);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
DvktBuildPrograms.cpp544 progIter->id.testCasePath.c_str(), in buildPrograms()