Home | History | Annotate | Download | only in base

Lines Matching defs:switch_value

54 // Fills in |switch_string| and |switch_value| if |string| is a switch.
58 CommandLine::StringType* switch_value) {
60 switch_value->clear();
68 *switch_value = string.substr(equals_position + 1);
81 CommandLine::StringType switch_value;
83 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
86 switch_value);
88 command_line.AppendSwitchNative(switch_string, switch_value);
270 StringType switch_value;
274 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
276 if (!switch_value.empty()) {
278 switch_value = QuoteForCommandLineToArgvW(switch_value);
280 params.append(kSwitchValueSeparator + switch_value);