Home
last modified time | relevance | path

Searched refs:m_cmdLine (Results 1 – 12 of 12) sorted by relevance

/external/deqp/framework/common/
DtcuCommandLine.cpp670 m_cmdLine.clear(); in clear()
694 if (!parser.parse(argc-1, argv+1, &m_cmdLine, std::cerr)) in parse()
703 if (!m_cmdLine.getOption<opt::LogImages>()) in parse()
706 if ((m_cmdLine.hasOption<opt::CasePath>()?1:0) + in parse()
707 (m_cmdLine.hasOption<opt::CaseList>()?1:0) + in parse()
708 (m_cmdLine.hasOption<opt::CaseListFile>()?1:0) + in parse()
709 (m_cmdLine.getOption<opt::StdinCaseList>()?1:0) > 1) in parse()
718 if (m_cmdLine.hasOption<opt::CaseList>()) in parse()
720 std::istringstream str(m_cmdLine.getOption<opt::CaseList>()); in parse()
724 else if (m_cmdLine.hasOption<opt::CaseListFile>()) in parse()
[all …]
DtcuTestExecutor.cpp45 , m_cmdLine (cmdLine) in TestExecutor()
86 const RunMode runMode = m_cmdLine.getRunMode(); in enterTestPackage()
119 const RunMode runMode = m_cmdLine.getRunMode(); in leaveTestPackage()
170 const RunMode runMode = m_cmdLine.getRunMode(); in enterTestCase()
194 const RunMode runMode = m_cmdLine.getRunMode(); in leaveTestCase()
258 …if (!(isLeaf ? m_cmdLine.checkTestCaseName(nodePath.c_str()) : m_cmdLine.checkTestGroupName(nodePa… in iterate()
278 if (m_cmdLine.getRunMode() == RUNMODE_EXECUTE) in iterate()
292 else if (m_cmdLine.getRunMode() == RUNMODE_DUMP_XML_CASELIST) in iterate()
319 else if (m_cmdLine.getRunMode() == RUNMODE_DUMP_TEXT_CASELIST) in iterate()
363 if (m_cmdLine.getRunMode() == RUNMODE_DUMP_XML_CASELIST) in iterate()
DtcuTestContext.hpp60 const CommandLine& getCommandLine (void) const { return m_cmdLine; } in getCommandLine()
76 const CommandLine& m_cmdLine; //!< Command line. member in tcu::TestContext
DtcuCommandLine.hpp189 de::cmdline::CommandLine m_cmdLine; member in tcu::CommandLine
DtcuTestExecutor.hpp156 const CommandLine& m_cmdLine; member in tcu::TestExecutor
DtcuTestContext.cpp40 , m_cmdLine (cmdLine) in TestContext()
/external/deqp/framework/platform/android/
DtcuAndroidTestActivity.cpp43 , m_cmdLine (cmdLine) in TestThread()
45 , m_log (m_cmdLine.getLogFileName()) in TestThread()
46 , m_app (m_platform, m_archive, m_log, m_cmdLine) in TestThread()
88 , m_cmdLine (getIntentStringExtra(activity, "cmdLine")) in TestActivity()
89 , m_testThread (*this, m_cmdLine) in TestActivity()
93 setRequestedOrientation(getNativeActivity(), mapScreenRotation(m_cmdLine.getScreenRotation())); in TestActivity()
139 setRequestedOrientation(getNativeActivity(), mapScreenRotation(m_cmdLine.getScreenRotation())); in onConfigurationChanged()
DtcuAndroidTestActivity.hpp53 const CommandLine& m_cmdLine; member in tcu::Android::TestThread
72 CommandLine m_cmdLine; member in tcu::Android::TestActivity
/external/deqp/execserver/tools/
DxsClient.cpp156 const CommandLine& m_cmdLine; member in xs::Client
161 : m_cmdLine(cmdLine) in Client()
172 m_socket.connect(m_cmdLine.address); in run()
174 printf("Connected to %s:%d!\n", m_cmdLine.address.getHost(), m_cmdLine.address.getPort()); in run()
177 std::fstream out(m_cmdLine.dstFileName.c_str(), std::fstream::out|std::fstream::binary); in run()
179 printf(" writing to %s\n", m_cmdLine.dstFileName.c_str()); in run()
185 msg.name = m_cmdLine.program; in run()
186 msg.params = m_cmdLine.params; in run()
187 msg.workDir = m_cmdLine.workingDir; in run()
188 msg.caseList = m_cmdLine.caseList; in run()
/external/deqp/framework/platform/ios/
DtcuIOSApp.mm73 const char* getCommandLine (void) const { return m_cmdLine.c_str(); }
79 std::string m_cmdLine;
97 m_cmdLine = cmdLine;
304 tcu::CommandLine* m_cmdLine; field
315 , m_cmdLine (DE_NULL) function
330 DE_ASSERT(!m_app && !m_log && !m_cmdLine && !m_platform);
335 m_cmdLine = new tcu::CommandLine(m_state.getCommandLine());
336 m_app = new tcu::App(m_platform, m_archive, *m_log, *m_cmdLine);
348 delete m_cmdLine;
351 m_cmdLine = DE_NULL;
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
DDeqpInstrumentation.java51 private String m_cmdLine; field in DeqpInstrumentation
60 m_cmdLine = arguments.getString("deqpCmdLine"); in onCreate()
63 if (m_cmdLine == null) in onCreate()
64 m_cmdLine = ""; in onCreate()
97 remoteApi.start(testerName, m_cmdLine, null); in onStart()
/external/deqp/executor/tools/
DxeExtractShaderPrograms.cpp135 : m_cmdLine(cmdLine) in ShaderProgramExtractHandler()
165 extractShaderPrograms(m_cmdLine, caseData->getTestCasePath(), fullResult); in testCaseResultComplete()
170 const CommandLine& m_cmdLine; member in ShaderProgramExtractHandler