Home | History | Annotate | Download | only in base

Lines Matching refs:switch_value

48 // Fills in |switch_string| and |switch_value| if |string| is a switch.
52 CommandLine::StringType* switch_value) {
54 switch_value->clear();
62 *switch_value = string.substr(equals_position + 1);
75 CommandLine::StringType switch_value;
77 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
79 command_line.AppendSwitchNative(WideToASCII(switch_string), switch_value);
81 command_line.AppendSwitchNative(switch_string, switch_value);
254 StringType switch_value;
258 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
260 if (!switch_value.empty()) {
262 switch_value = QuoteForCommandLineToArgvW(switch_value);
264 params.append(kSwitchValueSeparator + switch_value);