HomeSort by relevance Sort by last modified time
    Searched refs:cmdLine (Results 1 - 25 of 178) sorted by null

1 2 3 4 5 6 7 8

  /external/deqp/framework/common/
tcuTestHierarchyUtil.hpp 33 void writeXmlCaselistsToFiles (TestPackageRoot& root, TestContext& testCtx, const CommandLine& cmdLine);
34 void writeTxtCaselistsToFiles (TestPackageRoot& root, TestContext& testCtx, const CommandLine& cmdLine);
tcuTestContext.cpp 35 const CommandLine& cmdLine,
40 , m_cmdLine (cmdLine)
tcuApp.cpp 50 static void writeCaselistsToStdout (TestPackageRoot& root, TestContext& testCtx, const CommandLine& cmdLine)
53 TestHierarchyIterator iter (root, inflater, cmdLine);
80 App::App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine)
97 const RunMode runMode = cmdLine.getRunMode();
100 if (cmdLine.isWatchDogEnabled())
104 if (cmdLine.isCrashHandlingEnabled())
108 m_testCtx = new TestContext(m_platform, archive, log, cmdLine, m_watchDog);
117 writeCaselistsToStdout(*m_testRoot, *m_testCtx, cmdLine);
119 writeXmlCaselistsToFiles(*m_testRoot, *m_testCtx, cmdLine);
121 writeTxtCaselistsToFiles(*m_testRoot, *m_testCtx, cmdLine);
    [all...]
  /external/deqp/framework/delibs/deutil/
deCommandLine.h 37 deCommandLine* deCommandLine_parse (const char* cmdLine);
38 void deCommandLine_destroy (deCommandLine* cmdLine);
deCommandLine.c 119 deCommandLine* cmdLine = (deCommandLine*)deCalloc(sizeof(deCommandLine));
121 if (!cmdLine || !(cmdLine->args = (char**)deCalloc(sizeof(char*)*(size_t)CharPtrArray_getNumElements(args))))
123 deFree(cmdLine);
129 cmdLine->numArgs = CharPtrArray_getNumElements(args);
130 cmdLine->argBuf = buf;
132 for (argNdx = 0; argNdx < cmdLine->numArgs; argNdx++)
133 cmdLine->args[argNdx] = CharPtrArray_get(args, argNdx);
136 return cmdLine;
140 void deCommandLine_destroy (deCommandLine* cmdLine)
    [all...]
  /external/deqp/framework/platform/
tcuMain.cpp 46 tcu::CommandLine cmdLine (argc, argv);
48 tcu::TestLog log (cmdLine.getLogFileName(), cmdLine.getLogFlags());
50 de::UniquePtr<tcu::App> app (new tcu::App(*platform, archive, log, cmdLine));
  /cts/tools/vm-tests-tf/src/util/build/
ExecuteFile.java 41 private final String[] cmdLine;
108 cmdLine = new String[args.length + 1];
109 System.arraycopy(args, 0, cmdLine, 1, args.length);
111 cmdLine[0] = exec.getAbsolutePath();
115 cmdLine = new String[args.length + 1];
116 System.arraycopy(args, 0, cmdLine, 1, args.length);
118 cmdLine[0] = exec;
122 cmdLine = new String[1];
123 cmdLine[0] = exec.getAbsolutePath();
126 public ExecuteFile(@Nonnull String[] cmdLine) {
    [all...]
  /external/deqp/framework/delibs/decpp/
deCommandLine.cpp 34 namespace cmdline namespace in namespace:de
355 CommandLine cmdLine;
356 const bool parseOk = parser.parse(0, DE_NULL, &cmdLine, err);
364 CommandLine cmdLine;
365 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
374 CommandLine cmdLine;
375 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
384 CommandLine cmdLine;
385 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
388 DE_TEST_ASSERT(cmdLine.getArgs().size() == DE_LENGTH_OF_ARRAY(args))
    [all...]
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 86 void registerOptions (de::cmdline::Parser& parser)
88 using de::cmdline::Option;
89 using de::cmdline::NamedValue;
109 << Option<CmdLineArgs> (DE_NULL, "cmdline", "Additional command line arguments for the test binary.", "");
141 bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
143 de::cmdline::Parser parser;
144 de::cmdline::CommandLine opts;
176 cmdLine.runMode = RUNMODE_START_SERVER;
177 cmdLine.serverBinOrAddress = opts.getOption<opt::StartServer>();
181 cmdLine.runMode = RUNMODE_CONNECT
    [all...]
xeExtractShaderPrograms.cpp 68 static void writeShaderProgram (const CommandLine& cmdLine, const std::string& casePath, const xe::ri::ShaderProgram& shaderProgram, int programNdx)
70 const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de::toString(programNdx);
99 static void extractShaderPrograms (const CommandLine& cmdLine, const std::string& casePath, const xe::TestCaseResult& result)
117 writeShaderProgram(cmdLine, casePath, static_cast<const xe::ri::ShaderProgram&>(curItem), programNdx);
134 ShaderProgramExtractHandler (const CommandLine& cmdLine)
135 : m_cmdLine(cmdLine)
174 static void extractShaderProgramsFromLogFile (const CommandLine& cmdLine)
176 std::ifstream in (cmdLine.filename.c_str(), std::ifstream::binary|std::ifstream::in);
177 ShaderProgramExtractHandler resultHandler (cmdLine);
183 throw std::runtime_error(string("Failed to open '") + cmdLine.filename + "'")
    [all...]
xeTestLogCompare.cpp 76 static void registerOptions (de::cmdline::Parser& parser)
78 using de::cmdline::Option;
79 using de::cmdline::NamedValue;
264 static bool runCompare (const CommandLine& cmdLine, std::ostream& dst)
270 XE_CHECK(!cmdLine.filenames.empty());
275 results.resize(cmdLine.filenames.size());
279 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++)
281 readers.push_back(de::SharedPtr<LogFileReader>(new LogFileReader(results[ndx], cmdLine.filenames[ndx].c_str())));
285 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++)
290 batchNames.push_back(de::FilePath(cmdLine.filenames[ndx].c_str()).getBaseName())
    [all...]
xeMergeTestLogs.cpp 148 static void mergeTestLogs (const CommandLine& cmdLine)
152 for (vector<string>::const_iterator filename = cmdLine.srcFilenames.begin(); filename != cmdLine.srcFilenames.end(); ++filename)
153 readLogFile(&batchResult, filename->c_str(), cmdLine.flags);
155 if (!cmdLine.dstFilename.empty())
156 xe::writeBatchResultToFile(batchResult, cmdLine.dstFilename.c_str());
168 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
175 cmdLine.srcFilenames.push_back(arg);
178 if (!cmdLine.dstFilename.empty())
180 cmdLine.dstFilename = arg+6
    [all...]
xeExtractValues.cpp 221 static void printTaggedValues (const CommandLine& cmdLine, std::ostream& dst)
223 BatchResultValues values(cmdLine.tagNames);
225 readLogFile(values, cmdLine.filename.c_str());
230 if (cmdLine.statusCode)
244 if (cmdLine.statusCode)
260 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
267 cmdLine.statusCode = true;
270 if (cmdLine.filename.empty())
271 cmdLine.filename = arg;
273 cmdLine.tagNames.push_back(arg)
    [all...]
xeBatchResultToJUnit.cpp 56 static void parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
61 cmdLine.batchResultFile = argv[argc-2];
62 cmdLine.outputFile = argv[argc-1];
158 CommandLine cmdLine;
161 parseCommandLine(cmdLine, argc, argv);
171 batchResultToJUnitReport(cmdLine.batchResultFile.c_str(), cmdLine.outputFile.c_str());
  /external/deqp/framework/opengl/
gluRenderConfig.cpp 143 void parseRenderConfig (RenderConfig* config, const tcu::CommandLine& cmdLine)
145 switch (cmdLine.getSurfaceType())
156 config->windowVisibility = parseWindowVisibility(cmdLine);
158 if (cmdLine.getSurfaceWidth() > 0)
159 config->width = cmdLine.getSurfaceWidth();
161 if (cmdLine.getSurfaceHeight() > 0)
162 config->height = cmdLine.getSurfaceHeight();
164 if (cmdLine.getGLConfigName() != DE_NULL)
165 parseConfigBitsFromName(config, cmdLine.getGLConfigName());
167 if (cmdLine.getGLConfigId() >= 0
    [all...]
gluContextFactory.hpp 61 * \param cmdLine Command line for extra arguments
64 virtual RenderContext* createContext (const RenderConfig& config, const tcu::CommandLine& cmdLine) const = 0;
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
RemoteAPI.java 67 public boolean start (String testerName, String cmdLine, String caseList) {
76 // Add all data to cmdLine
77 cmdLine = testerName + " " + cmdLine + " --deqp-log-filename=" + m_logFileName;
80 cmdLine = cmdLine + " --deqp-caselist=" + caseList;
82 cmdLine = cmdLine.replaceAll(" ", " ");
83 testIntent.putExtra("cmdLine", cmdLine);
    [all...]
  /external/deqp/execserver/tools/
xsMain.cpp 42 void registerOptions (de::cmdline::Parser& parser)
44 using de::cmdline::Option;
45 using de::cmdline::NamedValue;
55 de::cmdline::CommandLine cmdLine;
68 de::cmdline::Parser parser;
71 if (!parser.parse(argc, argv, &cmdLine, std::cerr))
80 const xs::ExecutionServer::RunMode runMode = cmdLine.getOption<opt::SingleExec>()
83 const int port = cmdLine.getOption<opt::Port>();
  /external/deqp/framework/egl/
egluGLContextFactory.hpp 50 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
egluPlatform.hpp 88 * \param cmdLine Reserved for future use
90 virtual tcu::FunctionLibrary* createDefaultGLFunctionLibrary (glu::ApiType apiType, const tcu::CommandLine& cmdLine) const;
  /external/deqp/framework/platform/win32/
tcuWGLContextFactory.hpp 39 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
  /sdk/find_java2/src/
WinLauncher2App.cpp 104 CLauncherCmdLineInfo cmdLine;
105 ParseCommandLine(cmdLine);
107 if (cmdLine.mDoHelp) {
117 CJavaFinder javaFinder(JAVA_VERS_TO_INT(1, cmdLine.mDoJava1_7 ? 7 : 6));
119 if (cmdLine.mDoForceUi || javaPath.isEmpty()) {
  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceUtil.hpp 48 const tcu::CommandLine& cmdLine);
vkDeviceUtil.cpp 84 VkPhysicalDevice chooseDevice (const InstanceInterface& vkInstance, VkInstance instance, const tcu::CommandLine& cmdLine)
91 if (!de::inBounds(cmdLine.getVKDeviceId(), 1, (int)devices.size()+1))
94 return devices[(size_t)(cmdLine.getVKDeviceId()-1)];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 36 my $cmdLine = $ENV{'COMP_LINE'};
43 } elsif ($cmdLine =~ /-(f|buildfile)\s+\S*$/) {
77 if ($cmdLine =~ /-(f|buildfile)\s+(\S+)/) {

Completed in 111 milliseconds

1 2 3 4 5 6 7 8