Searched defs:CommandLine (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DCommandLine.h38 class CommandLine { class in namespace:WebKit
/external/chromium/base/
H A Dcommand_line.h11 // There is a singleton read-only CommandLine that represents the command line
28 class BASE_API CommandLine { class
43 explicit CommandLine(NoProgram no_program);
46 explicit CommandLine(const FilePath& program);
49 CommandLine(int argc, const char* const* argv);
50 explicit CommandLine(const StringVector& argv);
53 ~CommandLine();
55 // Initialize the current process CommandLine singleton. On Windows, ignores
61 // Destroys the current process CommandLine singleton. This is necessary if
67 // Get the singleton CommandLine representin
[all...]
H A Dcommand_line.cc23 CommandLine* CommandLine::current_process_commandline_ = NULL;
26 typedef CommandLine::StringType::value_type CharType;
93 bool IsSwitch(const CommandLine::StringType& parameter_string,
95 CommandLine::StringType* switch_value) {
100 CommandLine::StringType prefix(kSwitchPrefixes[i]);
107 CommandLine::StringType switch_native;
108 if (equals_position == CommandLine::StringType::npos) {
130 CommandLine::CommandLine(NoProgra function in class:CommandLine
137 CommandLine::CommandLine(const FilePath& program) { function in class:CommandLine
150 CommandLine::CommandLine(int argc, const char* const* argv) { function in class:CommandLine
154 CommandLine::CommandLine(const StringVector& argv) { function in class:CommandLine
482 CommandLine::CommandLine() { function in class:CommandLine
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DCommandLine.java31 public class CommandLine { class
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp39 #include "llvm/Support/CommandLine.h"
356 std::string CommandLine(ProgramToRun);
361 errs() << ToolName << ": Failed to find program: '" << CommandLine
372 CommandLine.push_back(' ');
373 CommandLine.append(*i);
378 << ToolName << ": Command Line: " << CommandLine << '\n'; local
392 LPSTR(CommandLine.c_str()),
/external/llvm/tools/bugpoint/
H A DToolRunner.cpp17 #include "llvm/Support/CommandLine.h"
369 // Tokenize the CommandLine to the command and the args to allow
378 static void lexCommand(std::string &Message, const std::string &CommandLine, argument
384 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
385 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
388 std::string token = CommandLine.substr(lastPos, pos - lastPos);
394 lastPos = CommandLine.find_first_not_of(delimiters, pos);
396 pos = CommandLine.find_first_of(delimiters, lastPos);
/external/clang/lib/Serialization/
H A DASTReader.cpp210 SmallVector<StringRef, 2> CommandLine; local
211 CommandLine.push_back(Left);
212 CommandLine.push_back(Right);
213 if (EqualConcatenations(CommandLine, Buffers))

Completed in 270 milliseconds