HomeSort by relevance Sort by last modified time
    Searched defs:CommandLine (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/libweave/third_party/chromium/base/
command_line.h 12 // There is a singleton read-only CommandLine that represents the command line
24 class CommandLine {
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine)
49 CommandLine(std::move(CommandLine)) {}
58 std::vector<std::string> CommandLine;
192 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
Tooling.h 210 /// \param CommandLine The command line arguments to clang. Note that clang
211 /// uses its binary name (CommandLine[0]) to locate its builtin headers.
219 ToolInvocation(std::vector<std::string> CommandLine, FrontendAction *FAction,
226 /// \param CommandLine The command line arguments to clang.
231 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action,
262 std::vector<std::string> CommandLine;
424 /// \brief Changes CommandLine to contain implicit flags that would have been
429 /// be inserted after the first argument in \c CommandLine.
432 /// are already present in `CommandLine` (even if they have different settings
437 /// \param CommandLine the command line used to invoke the compiler driver o
    [all...]
  /external/deqp/executor/tools/
xeBatchResultToJUnit.cpp 41 struct CommandLine
43 CommandLine (void)
56 static void parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
158 CommandLine cmdLine;
xeMergeTestLogs.cpp 49 struct CommandLine
51 CommandLine (void)
148 static void mergeTestLogs (const CommandLine& cmdLine)
168 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
200 CommandLine cmdLine;
xeExtractShaderPrograms.cpp 43 struct CommandLine
45 CommandLine (void)
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;
xeBatchResultToXml.cpp 76 struct CommandLine
78 CommandLine (void)
88 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
91 de::cmdline::CommandLine opts;
384 CommandLine cmdLine;
xeExtractValues.cpp 42 struct CommandLine
44 CommandLine (void)
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;
xeCommandLineExecutor.cpp 120 struct CommandLine
122 CommandLine (void)
141 bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
144 de::cmdline::CommandLine opts;
458 xe::CommLink* createCommLink (const CommandLine& cmdLine)
577 void runExecutor (const CommandLine& cmdLine)
666 CommandLine cmdLine;
xeTestLogCompare.cpp 104 struct CommandLine
106 CommandLine (void)
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/libchrome/base/
command_line.h 12 // There is a singleton read-only CommandLine that represents the command line
32 class BASE_EXPORT CommandLine {
48 explicit CommandLine(NoProgram no_program);
51 explicit CommandLine(const FilePath& program);
54 CommandLine(int argc, const CharType* const* argv);
55 explicit CommandLine(const StringVector& argv);
58 CommandLine(const CommandLine& other);
59 CommandLine& operator=(const CommandLine& other)
    [all...]
command_line.cc 25 CommandLine* CommandLine::current_process_commandline_ = NULL;
29 const CommandLine::CharType kSwitchTerminator[] = FILE_PATH_LITERAL("--");
30 const CommandLine::CharType kSwitchValueSeparator[] = FILE_PATH_LITERAL("=");
38 const CommandLine::CharType* const kSwitchPrefixes[] = {L"--", L"-", L"/"};
41 const CommandLine::CharType* const kSwitchPrefixes[] = {"--", "-"};
45 size_t GetSwitchPrefixLength(const CommandLine::StringType& string) {
47 CommandLine::StringType prefix(kSwitchPrefixes[i]);
56 bool IsSwitch(const CommandLine::StringType& string,
57 CommandLine::StringType* switch_string
    [all...]
  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 241 class CommandLine;
254 bool parse (int numArgs, const char* const* args, CommandLine* dst, std::ostream& err) const;
394 class CommandLine
397 CommandLine (void) {}
398 ~CommandLine (void) {}
422 using detail::CommandLine;
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 115 ASSERT_EQ(1u, Commands[0].CommandLine.size());
116 EXPECT_EQ(Command1, Commands[0].CommandLine[0]) << ErrorMessage;
119 ASSERT_EQ(1u, Commands[1].CommandLine.size());
120 EXPECT_EQ(Command2, Commands[1].CommandLine[0]) << ErrorMessage;
134 ASSERT_EQ(1u, Commands[0].CommandLine.size());
135 EXPECT_EQ(Command2, Commands[0].CommandLine[0]) << ErrorMessage;
138 ASSERT_EQ(1u, Commands[1].CommandLine.size());
139 EXPECT_EQ(Command1, Commands[1].CommandLine[0]) << ErrorMessage;
171 EXPECT_EQ(1u, FoundCommand.CommandLine.size()) << ErrorMessage;
172 EXPECT_EQ(Arguments, FoundCommand.CommandLine[0]) << ErrorMessage
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.hpp 95 * CommandLine handles argument parsing and provides convinience functions
98 class CommandLine
101 CommandLine (void);
102 CommandLine (int argc, const char* const* argv);
103 explicit CommandLine (const std::string& cmdLine);
104 ~CommandLine (void);
195 const de::cmdline::CommandLine& getCommandLine (void) const;
198 CommandLine (const CommandLine&); // not allowed!
199 CommandLine& operator= (const CommandLine&); // not allowed
    [all...]
tcuCommandLine.cpp 638 * \note CommandLine is not fully initialized until parse() has been called.
640 CommandLine::CommandLine (void)
653 CommandLine::CommandLine (int argc, const char* const* argv)
667 CommandLine::CommandLine (const std::string& cmdLine)
675 CommandLine::~CommandLine (void)
680 void CommandLine::clear (void
    [all...]
  /art/profman/
profman.cc 45 static std::string CommandLine() {
78 UsageError("Command: %s", CommandLine().c_str());
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 33 CommandLineArgumentParser(StringRef CommandLine)
34 : Input(CommandLine), Position(Input.begin()-1) {}
41 CommandLine.push_back(Argument);
43 return CommandLine;
111 std::vector<std::string> CommandLine;
Tooling.cpp 167 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine,
169 if (!CommandLine.empty() && !InvokedAs.empty()) {
172 // Skip CommandLine[0].
173 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end();
184 CommandLine.insert(++CommandLine.begin(), TargetMode.second);
187 CommandLine.insert(++CommandLine.begin(), {"-target", TargetMode.first});
206 std::vector<std::string> CommandLine, ToolAction *Action
    [all...]
  /external/deqp/execserver/tools/
xsClient.cpp 136 class CommandLine
150 Client (const CommandLine& cmdLine);
156 const CommandLine& m_cmdLine;
160 Client::Client (const CommandLine& cmdLine)
303 CommandLine cmdLine;
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 39 #include "llvm/Support/CommandLine.h"
318 std::string CommandLine(ProgramToRun);
323 errs() << ToolName << ": Failed to find program: '" << CommandLine
334 CommandLine.push_back(' ');
335 CommandLine.append(*i);
340 << ToolName << ": Command Line: " << CommandLine << '\n';
354 LPSTR(CommandLine.c_str()),
  /external/lzma/Java/SevenZip/
LzmaAlone.java 5 static public class CommandLine
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/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 31 public class CommandLine {
  /external/libevent/
event_rpcgen.py     [all...]
  /art/patchoat/
patchoat.cc     [all...]

Completed in 832 milliseconds

1 2 3