Searched defs:CommandLine (Results 1 - 25 of 29) sorted by last modified time

12

/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DCommandLine.java31 public class CommandLine { class
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp39 #include "llvm/Support/CommandLine.h"
317 std::string CommandLine(ProgramToRun);
322 errs() << ToolName << ": Failed to find program: '" << CommandLine
333 CommandLine.push_back(' ');
334 CommandLine.append(*i);
339 << ToolName << ": Command Line: " << CommandLine << '\n'; local
353 LPSTR(CommandLine.c_str()),
/external/lzma/Java/SevenZip/
H A DLzmaAlone.java5 static public class CommandLine class in class:LzmaAlone
174 CommandLine params = new CommandLine();
181 if (params.Command == CommandLine.kBenchmak)
190 else if (params.Command == CommandLine.kEncode || params.Command == CommandLine.kDecode)
201 if (params.Command == CommandLine.kEncode)
/external/llvm/tools/bugpoint/
H A DToolRunner.cpp16 #include "llvm/Support/CommandLine.h"
400 // Tokenize the CommandLine to the command and the args to allow
409 static void lexCommand(std::string &Message, const std::string &CommandLine, argument
415 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
416 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
419 std::string token = CommandLine.substr(lastPos, pos - lastPos);
425 lastPos = CommandLine.find_first_not_of(delimiters, pos);
427 pos = CommandLine.find_first_of(delimiters, lastPos);
/external/deqp/execserver/tools/
H A DxsClient.cpp136 class CommandLine class in namespace:xs
150 Client (const CommandLine& cmdLine);
156 const CommandLine& m_cmdLine;
160 Client::Client (const CommandLine& cmdLine)
303 CommandLine cmdLine;
/external/deqp/executor/tools/
H A DxeBatchResultToJUnit.cpp41 struct CommandLine struct
43 CommandLine (void) function in struct:CommandLine
56 static void parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
158 CommandLine cmdLine;
H A DxeBatchResultToXml.cpp76 struct CommandLine struct
78 CommandLine (void) function in struct:CommandLine
88 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
91 de::cmdline::CommandLine opts;
384 CommandLine cmdLine;
H A DxeCommandLineExecutor.cpp104 struct CommandLine struct
106 CommandLine (void) function in struct:CommandLine
125 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
128 de::cmdline::CommandLine opts;
401 static xe::CommLink* createCommLink (const CommandLine& cmdLine)
439 static void runExecutor (const CommandLine& cmdLine)
491 CommandLine cmdLine;
H A DxeExtractShaderPrograms.cpp43 struct CommandLine struct
45 CommandLine (void) function in struct:CommandLine
68 static void writeShaderProgram (const CommandLine& cmdLine, const std::string& casePath, const xe::ri::ShaderProgram& shaderProgram, int programNdx)
99 static void extractShaderPrograms (const CommandLine& cmdLine, const std::string& casePath, const xe::TestCaseResult& result)
134 ShaderProgramExtractHandler (const CommandLine& cmdLine)
170 const CommandLine& m_cmdLine;
174 static void extractShaderProgramsFromLogFile (const CommandLine& cmdLine)
204 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
233 CommandLine cmdLine;
H A DxeExtractValues.cpp42 struct CommandLine struct
44 CommandLine (void) function in struct:CommandLine
221 static void printTaggedValues (const CommandLine& cmdLine, std::ostream& dst)
260 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
289 CommandLine cmdLine;
H A DxeMergeTestLogs.cpp49 struct CommandLine struct
51 CommandLine (void) function in struct:CommandLine
148 static void mergeTestLogs (const CommandLine& cmdLine)
168 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
200 CommandLine cmdLine;
H A DxeTestLogCompare.cpp104 struct CommandLine struct
106 CommandLine (void) function in struct:CommandLine
264 static bool runCompare (const CommandLine& cmdLine, std::ostream& dst)
367 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
370 de::cmdline::CommandLine opts;
394 CommandLine cmdLine;
/external/deqp/framework/common/
H A DtcuCommandLine.cpp626 * \note CommandLine is not fully initialized until parse() has been called.
628 CommandLine::CommandLine (void) function in class:tcu::CommandLine
641 CommandLine::CommandLine (int argc, const char* const* argv) function in class:tcu::CommandLine
655 CommandLine::CommandLine (const std::string& cmdLine) function in class:tcu::CommandLine
663 CommandLine::~CommandLine (void)
668 void CommandLine
[all...]
H A DtcuCommandLine.hpp93 * CommandLine handles argument parsing and provides convinience functions
96 class CommandLine class in namespace:tcu
99 CommandLine (void);
100 CommandLine (int argc, const char* const* argv);
101 explicit CommandLine (const std::string& cmdLine);
102 ~CommandLine (void);
184 CommandLine (const CommandLine&); // not allowed!
185 CommandLine& operator= (const CommandLine
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.hpp241 class CommandLine;
254 bool parse (int numArgs, const char* const* args, CommandLine* dst, std::ostream& err) const;
394 class CommandLine class in namespace:de::cmdline::detail
397 CommandLine (void) {} function in class:de::cmdline::detail::CommandLine
398 ~CommandLine (void) {}
422 using detail::CommandLine;
/external/clang/lib/Tooling/
H A DCompilationDatabase.cpp294 std::vector<const char *> CommandLine(DoubleDash + 1, Argv + Argc);
298 if (!stripPositionalArgs(CommandLine, StrippedArgs))
304 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) { argument
307 CommandLine.begin(), CommandLine.end());
315 Result[0].CommandLine.push_back(FilePath);
H A DJSONCompilationDatabase.cpp33 CommandLineArgumentParser(StringRef CommandLine) argument
34 : Input(CommandLine), Position(Input.begin()-1) {}
41 CommandLine.push_back(Argument);
43 return CommandLine;
111 std::vector<std::string> CommandLine; member in class:clang::tooling::__anon18291::CommandLineArgumentParser
H A DTooling.cpp168 ToolInvocation::ToolInvocation(std::vector<std::string> CommandLine, argument
170 : CommandLine(std::move(CommandLine)),
176 ToolInvocation::ToolInvocation(std::vector<std::string> CommandLine, argument
178 : CommandLine(std::move(CommandLine)),
201 for (const std::string &Str : CommandLine)
345 std::vector<std::string> CommandLine = Command.second.CommandLine; local
347 CommandLine
[all...]
/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp108 ASSERT_EQ(1u, Commands[0].CommandLine.size());
109 EXPECT_EQ(Command1, Commands[0].CommandLine[0]) << ErrorMessage;
111 ASSERT_EQ(1u, Commands[1].CommandLine.size());
112 EXPECT_EQ(Command2, Commands[1].CommandLine[0]) << ErrorMessage;
209 EXPECT_TRUE(NotFound.CommandLine.empty()) << ErrorMessage;
225 ASSERT_EQ(4u, FoundCommand.CommandLine.size()) << ErrorMessage;
227 FoundCommand.CommandLine[0]) << ErrorMessage;
228 EXPECT_EQ("and", FoundCommand.CommandLine[1]) << ErrorMessage;
229 EXPECT_EQ("some", FoundCommand.CommandLine[2]) << ErrorMessage;
230 EXPECT_EQ("arguments", FoundCommand.CommandLine[
401 std::vector<std::string> CommandLine; local
417 std::vector<std::string> CommandLine; local
426 std::vector<std::string> CommandLine; local
463 std::vector<std::string> CommandLine; local
482 std::vector<std::string> CommandLine; local
[all...]
/external/clang/include/clang/Tooling/
H A DCompilationDatabase.h45 CompileCommand(Twine Directory, std::vector<std::string> CommandLine) argument
46 : Directory(Directory.str()), CommandLine(std::move(CommandLine)) {}
52 std::vector<std::string> CommandLine; member in struct:clang::tooling::CompileCommand
186 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
H A DTooling.h184 /// \param CommandLine The command line arguments to clang. Note that clang
185 /// uses its binary name (CommandLine[0]) to locate its builtin headers.
191 ToolInvocation(std::vector<std::string> CommandLine, FrontendAction *FAction,
196 /// \param CommandLine The command line arguments to clang.
199 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action,
225 std::vector<std::string> CommandLine; member in class:clang::tooling::ToolInvocation
/external/chromium_org/tools/site_compare/
H A Dcommand_line.py496 class CommandLine(object): class in inherits:object
666 cmdline = CommandLine()
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DProcessDetail.cs88 public string CommandLine { property in class:ChromeDebug.ProcessDetail
198 cachedProcessParams.Value.CommandLine.Buffer,
199 cachedProcessParams.Value.CommandLine.Length / 2);
/external/chromium_org/tools/win/ChromeDebug/LowLevel/
H A DTypes.cs164 public UNICODE_STRING CommandLine { get { return commandLine; } } property in struct:ChromeDebug.LowLevel.LowLevelTypes.RTL_USER_PROCESS_PARAMETERS

Completed in 431 milliseconds

12