Home
last modified time | relevance | path

Searched refs:command_line_string_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium/base/
Dcommand_line.cc63 TrimWhitespace(command_line, TRIM_ALL, &command_line_string_); in ParseFromString()
65 if (command_line_string_.empty()) in ParseFromString()
71 args = CommandLineToArgvW(command_line_string_.c_str(), &num_args); in ParseFromString()
107 command_line_string_ = L'"' + program.value() + L'"'; in CommandLine()
336 command_line_string_.append(L" "); in AppendSwitch()
337 command_line_string_.append(prefixed_switch_string); in AppendSwitch()
360 command_line_string_.append(L" "); in AppendSwitchWithValue()
361 command_line_string_.append(combined_switch_string); in AppendSwitchWithValue()
368 command_line_string_.append(L" "); in AppendLooseValue()
369 command_line_string_.append(value); in AppendLooseValue()
[all …]
Dcommand_line.h133 return command_line_string_; in command_line_string()
206 std::wstring command_line_string_; variable