HomeSort by relevance Sort by last modified time
    Searched refs:combined_switch_string (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/base/
command_line.cc 328 StringType combined_switch_string(ASCIIToWide(switch_key));
330 StringType combined_switch_string(switch_string);
332 size_t prefix_length = GetSwitchPrefixLength(combined_switch_string);
336 combined_switch_string = kSwitchPrefixes[0] + combined_switch_string;
338 combined_switch_string += kSwitchValueSeparator + value;
340 argv_.insert(argv_.begin() + begin_args_++, combined_switch_string);
  /external/chromium/base/
command_line.cc 312 StringType combined_switch_string = local
315 combined_switch_string += kSwitchValueSeparator + WindowsStyleQuote(value);
318 command_line_string_.append(combined_switch_string);
322 StringType combined_switch_string = kSwitchPrefixes[0] + switch_string;
324 combined_switch_string += kSwitchValueSeparator + value;
325 argv_.push_back(combined_switch_string);

Completed in 203 milliseconds