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

  /external/chromium_org/chrome/browser/android/
chrome_startup_flags.cc 20 void SetCommandLineSwitch(const std::string& switch_string) {
22 if (!command_line->HasSwitch(switch_string))
23 command_line->AppendSwitch(switch_string);
26 void SetCommandLineSwitchASCII(const std::string& switch_string,
29 if (!command_line->HasSwitch(switch_string))
30 command_line->AppendSwitchASCII(switch_string, value);
  /external/chromium_org/content/common/android/
command_line.cc 38 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
39 return CommandLine::ForCurrentProcess()->HasSwitch(switch_string);
43 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
45 switch_string));
53 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
54 CommandLine::ForCurrentProcess()->AppendSwitch(switch_string);
59 std::string switch_string(ConvertJavaStringToUTF8(env, jswitch));
61 CommandLine::ForCurrentProcess()->AppendSwitchASCII(switch_string,
  /external/chromium/base/
command_line.cc 91 // Returns true and fills in |switch_string| and |switch_value| if
94 std::string* switch_string,
96 switch_string->clear();
116 *switch_string = WideToASCII(switch_native);
117 Lowercase(switch_string);
119 *switch_string = switch_native;
218 std::string switch_string; local
220 if (IsSwitch(arg, &switch_string, &switch_value)) {
221 switches_[switch_string] = switch_value;
246 bool CommandLine::HasSwitch(const std::string& switch_string) const
468 std::string switch_string; local
    [all...]
command_line.h 96 bool HasSwitch(const std::string& switch_string) const;
100 std::string GetSwitchValueASCII(const std::string& switch_string) const;
101 FilePath GetSwitchValuePath(const std::string& switch_string) const;
102 StringType GetSwitchValueNative(const std::string& switch_string) const;
113 void AppendSwitch(const std::string& switch_string);
114 void AppendSwitchPath(const std::string& switch_string, const FilePath& path);
115 void AppendSwitchNative(const std::string& switch_string,
117 void AppendSwitchASCII(const std::string& switch_string,
  /external/chromium_org/base/
command_line.h 105 bool HasSwitch(const std::string& switch_string) const;
109 std::string GetSwitchValueASCII(const std::string& switch_string) const;
110 base::FilePath GetSwitchValuePath(const std::string& switch_string) const;
111 StringType GetSwitchValueNative(const std::string& switch_string) const;
118 void AppendSwitch(const std::string& switch_string);
119 void AppendSwitchPath(const std::string& switch_string,
121 void AppendSwitchNative(const std::string& switch_string,
123 void AppendSwitchASCII(const std::string& switch_string,
command_line.cc 48 // Fills in |switch_string| and |switch_value| if |string| is a switch.
49 // This will preserve the input switch prefix in the output |switch_string|.
51 CommandLine::StringType* switch_string,
53 switch_string->clear();
60 *switch_string = string.substr(0, equals_position);
74 CommandLine::StringType switch_string; local
77 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
79 command_line.AppendSwitchNative(WideToASCII(switch_string), switch_value);
81 command_line.AppendSwitchNative(switch_string, switch_value);
253 StringType switch_string; local
    [all...]
  /external/chromium_org/content/renderer/gpu/
render_widget_compositor.cc 41 const std::string& switch_string,
45 std::string string_value = command_line.GetSwitchValueASCII(switch_string);
52 LOG(WARNING) << "Failed to parse switch " << switch_string << ": " <<
60 const std::string& switch_string,
64 std::string string_value = command_line.GetSwitchValueASCII(switch_string);
71 LOG(WARNING) << "Failed to parse switch " << switch_string << ": " <<
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_proxy.cc 26 void LaunchBrowserProcessWithSwitch(const std::string& switch_string) {
41 cmd_line.AppendSwitch(switch_string);

Completed in 373 milliseconds