Home | History | Annotate | Download | only in base

Lines Matching refs:CommandLine

11 // There is a singleton read-only CommandLine that represents the command line
28 class BASE_API CommandLine {
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 representing the current process's
70 static CommandLine* ForCurrentProcess();
73 static CommandLine FromString(const std::wstring& command_line);
119 void AppendSwitches(const CommandLine& other);
123 void CopySwitchesFrom(const CommandLine& source, const char* const switches[],
135 void AppendArgs(const CommandLine& other);
139 void AppendArguments(const CommandLine& other,
154 CommandLine();
156 // The singleton CommandLine representing the current process's command line.
157 static CommandLine* current_process_commandline_;
179 // CommandLine cl(*CommandLine::ForCurrentProcess());