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

  /external/libchrome/base/
command_line.cc 54 // Fills in |switch_string| and |switch_value| if |string| is a switch.
55 // This will preserve the input switch prefix in the output |switch_string|.
57 CommandLine::StringType* switch_string,
59 switch_string->clear();
66 *switch_string = string.substr(0, equals_position);
84 CommandLine::StringType switch_string; local
87 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
89 command_line->AppendSwitchNative(UTF16ToASCII(switch_string),
92 command_line->AppendSwitchNative(switch_string, switch_value);
285 bool CommandLine::HasSwitch(const base::StringPiece& switch_string) const
286 DCHECK_EQ(ToLowerASCII(switch_string), switch_string); local
316 DCHECK_EQ(ToLowerASCII(switch_string), switch_string); local
463 StringType switch_string; local
    [all...]
command_line.h 163 bool HasSwitch(const StringPiece& switch_string) const;
169 std::string GetSwitchValueASCII(const StringPiece& switch_string) const;
170 FilePath GetSwitchValuePath(const StringPiece& switch_string) const;
171 StringType GetSwitchValueNative(const StringPiece& switch_string) const;
178 void AppendSwitch(const std::string& switch_string);
179 void AppendSwitchPath(const std::string& switch_string,
181 void AppendSwitchNative(const std::string& switch_string,
183 void AppendSwitchASCII(const std::string& switch_string,
  /external/libmojo/base/android/
command_line_android.cc 41 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
42 return CommandLine::ForCurrentProcess()->HasSwitch(switch_string);
49 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
51 switch_string));
60 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
61 CommandLine::ForCurrentProcess()->AppendSwitch(switch_string);
68 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
70 CommandLine::ForCurrentProcess()->AppendSwitchASCII(switch_string,
  /external/libmojo/mojo/edk/test/
multiprocess_test_helper.cc 65 const std::string& switch_string,
98 if (!switch_string.empty()) {
99 CHECK(!command_line.HasSwitch(switch_string));
101 command_line.AppendSwitchASCII(switch_string, switch_value);
103 command_line.AppendSwitch(switch_string);
multiprocess_test_helper.h 43 const std::string& switch_string,

Completed in 77 milliseconds