Home | History | Annotate | Download | only in base

Lines Matching refs:command_line

5 #include "base/command_line.h"
73 void AppendSwitchesAndArguments(CommandLine& command_line,
85 command_line.AppendSwitchNative(UTF16ToASCII(switch_string),
88 command_line.AppendSwitchNative(switch_string, switch_value);
91 command_line.AppendArgNative(arg);
227 CommandLine CommandLine::FromString(const std::wstring& command_line) {
229 cmd.ParseFromString(command_line);
425 void CommandLine::ParseFromString(const std::wstring& command_line) {
427 TrimWhitespace(command_line, TRIM_ALL, &command_line_string);
436 << UTF16ToUTF8(command_line);