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

1 2 3 4

  /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*)*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));
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 73 void registerOptions (de::cmdline::Parser& parser)
75 using de::cmdline::Option;
76 using de::cmdline::NamedValue;
96 << Option<CmdLineArgs> (DE_NULL, "cmdline", "Additional command line arguments for test binary");
125 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
127 de::cmdline::Parser parser;
128 de::cmdline::CommandLine opts;
141 cmdLine.serverBin = opts.getOption<opt::StartServer>();
142 cmdLine.host = opts.getOption<opt::Host>();
143 cmdLine.port = opts.getOption<opt::Port>()
    [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/delibs/decpp/
deCommandLine.cpp 34 namespace cmdline namespace in namespace:de
348 CommandLine cmdLine;
349 const bool parseOk = parser.parse(0, DE_NULL, &cmdLine, err);
357 CommandLine cmdLine;
358 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
367 CommandLine cmdLine;
368 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
377 CommandLine cmdLine;
378 const bool parseOk = parser.parse(DE_LENGTH_OF_ARRAY(args), &args[0], &cmdLine, err);
381 DE_TEST_ASSERT(cmdLine.getArgs().size() == DE_LENGTH_OF_ARRAY(args))
    [all...]
  /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;
gluES3PlusWrapperContext.hpp 54 ES3PlusWrapperContext (const ContextFactory& factory, const RenderConfig& config, const tcu::CommandLine& cmdLine);
gluRenderConfig.hpp 103 void parseRenderConfig (RenderConfig* config, const tcu::CommandLine& cmdLine);
104 RenderConfig::Visibility parseWindowVisibility (const tcu::CommandLine& cmdLine);
  /cts/tests/tests/security/src/android/security/cts/
Proc.java 31 String cmdLineString = d.getAbsolutePath() + "/cmdline";
32 File cmdLine = new File(cmdLineString);
33 if (cmdLine.exists()) {
36 in = new BufferedReader(new FileReader(cmdLine));
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
RemoteAPI.java 69 public boolean start (String testerName, String cmdLine, String caseList) {
78 // Add all data to cmdLine
79 cmdLine = testerName + " " + cmdLine + " --deqp-log-filename=" + m_logFileName;
82 cmdLine = cmdLine + " --deqp-caselist=" + caseList;
84 cmdLine = cmdLine.replaceAll(" ", " ");
85 testIntent.putExtra("cmdLine", cmdLine);
    [all...]
  /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 37 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
  /external/deqp/framework/common/
tcuApp.hpp 66 App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine);
tcuCommandLine.hpp 101 explicit CommandLine (const std::string& cmdLine);
105 bool parse (const std::string& cmdLine);
189 de::cmdline::CommandLine m_cmdLine;
  /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+)/) {
  /external/deqp/executor/
xeLocalTcpIpLink.cpp 53 std::ostringstream cmdLine;
54 cmdLine << execServerPath << " --single --port=" << port;
59 if (deProcess_start(m_process, cmdLine.str().c_str(), workDir) != DE_TRUE)
  /external/deqp/framework/platform/android/
tcuAndroidTestActivity.hpp 42 TestThread (NativeActivity& activity, const CommandLine& cmdLine);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPManualDebuggeeWrapper.java 73 * @param cmdLine
79 protected Process launchProcess(String cmdLine) throws IOException {
81 "\n>>> Start debuggee VM with this command line:\n" + cmdLine);

Completed in 622 milliseconds

1 2 3 4