Lines Matching refs:CommandLine
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 base::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's
84 static CommandLine* ForCurrentProcess();
86 // Returns true if the CommandLine has been initialized for the given process.
90 static CommandLine FromString(const std::wstring& command_line);
139 void CopySwitchesFrom(const CommandLine& source,
156 void AppendArguments(const CommandLine& other, bool include_program);
170 CommandLine();
173 // CommandLine cl(*CommandLine::ForCurrentProcess());
176 // The singleton CommandLine representing the current process's command line.
177 static CommandLine* current_process_commandline_;