Home
last modified time | relevance | path

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

/third_party/cef/patch/patches/
Dbase_command_line_1872.patch10 const std::string switch_key = ToLowerASCII(switch_string);
12 StringType combined_switch_string(UTF8ToWide(switch_key));
14 - StringPiece switch_key = switch_string;
15 StringType combined_switch_string(switch_key);
/third_party/gn/src/base/
Dcommand_line.cc332 const std::string switch_key = ToLowerASCII(switch_string); in AppendSwitchNative() local
333 StringType combined_switch_string(ASCIIToUTF16(switch_key)); in AppendSwitchNative()
335 const std::string& switch_key = switch_string; in AppendSwitchNative()
336 StringType combined_switch_string(switch_key); in AppendSwitchNative()
340 switches_.insert(make_pair(switch_key.substr(prefix_length), value)); in AppendSwitchNative()