Home
last modified time | relevance | path

Searched refs:combined_switch_string (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/libchrome-gestures/src/
H A Dcommand_line.cc155 std::string combined_switch_string(switch_string); in AppendSwitchASCII() local
156 size_t prefix_length = GetSwitchPrefixLength(combined_switch_string); in AppendSwitchASCII()
160 combined_switch_string = kSwitchPrefixes[0] + combined_switch_string; in AppendSwitchASCII()
162 combined_switch_string += kSwitchValueSeparator + value; in AppendSwitchASCII()
164 argv_.insert(argv_.begin() + begin_args_++, combined_switch_string); in AppendSwitchASCII()
/aosp_15_r20/external/libchrome/base/
H A Dcommand_line.cc331 StringType combined_switch_string(ASCIIToUTF16(switch_key)); in AppendSwitchNative() local
334 StringType combined_switch_string(switch_key); in AppendSwitchNative()
336 size_t prefix_length = GetSwitchPrefixLength(combined_switch_string); in AppendSwitchNative()
343 combined_switch_string = kSwitchPrefixes[0] + combined_switch_string; in AppendSwitchNative()
345 combined_switch_string += kSwitchValueSeparator + value; in AppendSwitchNative()
347 argv_.insert(argv_.begin() + begin_args_++, combined_switch_string); in AppendSwitchNative()
/aosp_15_r20/external/cronet/base/
H A Dcommand_line.cc389 StringType combined_switch_string(UTF8ToWide(switch_key)); in GetSwitchValueASCII() local
392 StringType combined_switch_string(switch_key); in GetSwitchValueASCII() local
394 size_t prefix_length = GetSwitchPrefixLength(combined_switch_string); in GetSwitchValueASCII()
405 combined_switch_string.insert(0, kSwitchPrefixes[0].data(), in GetSwitchValueASCII()
409 base::StrAppend(&combined_switch_string, {kSwitchValueSeparator, value}); in GetSwitchValueASCII()
411 argv_.insert(argv_.begin() + begin_args_, combined_switch_string); in GetSwitchValueASCII()