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

1 2

  /external/chromium_org/base/
command_line.h 12 // There is a singleton read-only CommandLine that represents the command line
30 class BASE_EXPORT CommandLine {
45 explicit CommandLine(NoProgram no_program);
48 explicit CommandLine(const FilePath& program);
51 CommandLine(int argc, const CharType* const* argv);
52 explicit CommandLine(const StringVector& argv);
54 ~CommandLine();
67 // Initialize the current process CommandLine singleton. On Windows, ignores
75 // Destroys the current process CommandLine singleton. This is necessary if
81 // Get the singleton CommandLine representing the current process'
    [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/clang/include/clang/Tooling/
CompilationDatabase.h 45 CompileCommand(Twine Directory, std::vector<std::string> CommandLine)
46 : Directory(Directory.str()), CommandLine(std::move(CommandLine)) {}
52 std::vector<std::string> CommandLine;
186 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
Tooling.h 184 /// \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;
  /external/chromium_org/base/android/javatests/src/org/chromium/base/
CommandLineTest.java 32 CommandLine.reset();
36 CommandLine cl = CommandLine.getInstance();
51 CommandLine cl = CommandLine.getInstance();
77 String[] actual = CommandLine.tokenizeQuotedAruments(toParse.toCharArray());
87 CommandLine.init(INIT_SWITCHES);
95 CommandLine.init(CommandLine.tokenizeQuotedAruments(INIT_SWITCHES_BUFFER));
  /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 104 struct CommandLine
106 CommandLine (void)
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;
  /external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 11 import org.chromium.base.CommandLine;
86 initializeAlreadyLocked(CommandLine.getJavaSwitchesOrNull());
217 CommandLine.enableNativeProxy();
  /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;
392 class CommandLine
395 CommandLine (void) {}
396 ~CommandLine (void) {}
417 using detail::CommandLine;
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentCommandLineTest.java 10 import org.chromium.base.CommandLine;
40 CommandLine.reset();
44 assertFalse(CommandLine.getInstance().isNativeImplementation());
56 assertTrue(CommandLine.getInstance().isNativeImplementation());
60 CommandLine cl = CommandLine.getInstance();
75 CommandLine cl = CommandLine.getInstance();
101 CommandLine cl = CommandLine.getInstance()
    [all...]
  /external/chromium_org/tools/site_compare/
command_line.py 496 class CommandLine(object):
666 cmdline = CommandLine()
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 108 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[3]) << ErrorMessage
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.hpp 93 * CommandLine handles argument parsing and provides convinience functions
96 class CommandLine
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&); // not allowed
    [all...]
tcuCommandLine.cpp 429 * \note CommandLine is not fully initialized until parse() has been called.
431 CommandLine::CommandLine (void)
444 CommandLine::CommandLine (int argc, const char* const* argv)
458 CommandLine::CommandLine (const std::string& cmdLine)
466 CommandLine::~CommandLine (void)
471 void CommandLine::clear (void
    [all...]
  /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 168 ToolInvocation::ToolInvocation(std::vector<std::string> CommandLine,
170 : CommandLine(std::move(CommandLine)),
176 ToolInvocation::ToolInvocation(std::vector<std::string> CommandLine,
178 : CommandLine(std::move(CommandLine)),
201 for (const std::string &Str : CommandLine)
345 std::vector<std::string> CommandLine = Command.second.CommandLine;
347 CommandLine = Adjuster->Adjust(CommandLine)
    [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"
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';
353 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/chromium_org/base/android/java/src/org/chromium/base/
CommandLine.java 27 public abstract class CommandLine {
88 private static final AtomicReference<CommandLine> sCommandLine =
89 new AtomicReference<CommandLine>();
98 // Equivalent to CommandLine::ForCurrentProcess in C++.
99 public static CommandLine getInstance() {
100 CommandLine commandLine = sCommandLine.get();
101 assert commandLine != null;
102 return commandLine;
178 private static final String TAG = "CommandLine";
    [all...]

Completed in 546 milliseconds

1 2