Lines Matching full: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);
85 CommandLine::StringType switch_value;
87 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
90 switch_value);
92 command_line->AppendSwitchNative(switch_string, switch_value);
453 StringType switch_value;
457 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
459 if (!switch_value.empty()) {
461 switch_value =
462 QuoteForCommandLineToArgvW(switch_value, quote_placeholders);
464 params.append(kSwitchValueSeparator + switch_value);