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

  /external/chromium/chrome/browser/prerender/
prerender_field_trial.cc 28 const std::string switch_value = local
31 if (switch_value == switches::kPrerenderSwitchValueAuto) {
39 } else if (switch_value == switches::kPrerenderSwitchValueDisabled) {
41 } else if (switch_value.empty() ||
42 switch_value == switches::kPrerenderSwitchValueEnabled) {
46 } else if (switch_value == switches::kPrerenderSwitchValuePrefetchOnly) {
51 << switch_value;
  /external/chromium_org/chrome/browser/prerender/
prerender_field_trial.cc 177 const string switch_value = local
180 if (switch_value == switches::kPrerenderModeSwitchValueAuto) {
182 } else if (switch_value == switches::kPrerenderModeSwitchValueDisabled) {
184 } else if (switch_value.empty() ||
185 switch_value == switches::kPrerenderModeSwitchValueEnabled) {
189 } else if (switch_value ==
195 << switch_value;
253 const string switch_value = local
257 if (switch_value == switches::kPrerenderFromOmniboxSwitchValueEnabled)
260 if (switch_value == switches::kPrerenderFromOmniboxSwitchValueDisabled
    [all...]
  /external/chromium_org/chrome/common/extensions/
feature_switch.cc 98 std::string switch_value; local
99 TrimWhitespaceASCII(temp, TRIM_ALL, &switch_value);
101 if (switch_value == "1")
104 if (switch_value == "0")
  /external/chromium_org/base/
command_line.cc 48 // Fills in |switch_string| and |switch_value| if |string| is a switch.
52 CommandLine::StringType* switch_value) {
54 switch_value->clear();
62 *switch_value = string.substr(equals_position + 1);
75 CommandLine::StringType switch_value; local
77 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
79 command_line.AppendSwitchNative(WideToASCII(switch_string), switch_value); local
81 command_line.AppendSwitchNative(switch_string, switch_value);
254 StringType switch_value; local
258 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
    [all...]
  /external/chromium_org/ui/base/
layout.cc 50 const std::string switch_value = CommandLine::ForCurrentProcess()-> local
54 if (switch_value.empty() ||
55 switch_value == switches::kTouchOptimizedUIEnabled) {
57 } else if (switch_value == switches::kTouchOptimizedUIDisabled) {
59 } else if (switch_value != switches::kTouchOptimizedUIAuto) {
60 LOG(ERROR) << "Invalid --touch-optimized-ui option: " << switch_value;
  /external/chromium/base/
command_line.cc 91 // Returns true and fills in |switch_string| and |switch_value| if
95 CommandLine::StringType* switch_value) {
97 switch_value->clear();
113 *switch_value = parameter_string.substr(equals_position + 1);
219 StringType switch_value; local
220 if (IsSwitch(arg, &switch_string, &switch_value)) {
221 switches_[switch_string] = switch_value;
469 std::wstring switch_value; local
470 if (IsSwitch(arg, &switch_string, &switch_value)) {
471 switches_[switch_string] = switch_value;
    [all...]
  /external/chromium_org/google_apis/gaia/
gaia_urls.cc 49 void GetSwitchValueWithDefault(const char* switch_value,
53 if (command_line->HasSwitch(switch_value)) {
54 *output_value = command_line->GetSwitchValueASCII(switch_value);
  /external/chromium/chrome/browser/
browser_shutdown.cc 219 CommandLine::StringType switch_value = i->second; local
220 if (!switch_value.empty())
about_flags.cc 27 #define SINGLE_VALUE_TYPE_AND_VALUE(command_line_switch, switch_value) \
28 Experiment::SINGLE_VALUE, command_line_switch, switch_value, NULL, 0
browser_process_impl.cc 1055 CommandLine::StringType switch_value = i->second; local
    [all...]
  /external/chromium_org/chrome/browser/
browser_shutdown.cc 219 CommandLine::StringType switch_value = i->second; local
220 if (!switch_value.empty())
about_flags.cc 51 #define SINGLE_VALUE_TYPE_AND_VALUE(command_line_switch, switch_value) \
53 command_line_switch, switch_value, NULL, NULL, NULL, 0
    [all...]
browser_process_impl.cc 1037 CommandLine::StringType switch_value = i->second; local
    [all...]
  /external/chromium_org/chrome/app/
breakpad_linux.cc 221 std::string switch_value = local
223 size_t separator = switch_value.find(",");
225 child_process_logging::SetClientId(switch_value.substr(0, separator));
226 base::SetLinuxDistro(switch_value.substr(separator + 1));
228 child_process_logging::SetClientId(switch_value);
    [all...]
  /external/chromium_org/chrome/browser/ui/startup/
startup_browser_creator_impl.cc 400 std::string switch_value = local
402 if (ParseCommaSeparatedIntegers(switch_value, &width, &height)) {
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura.cc 1941 std::string switch_value = local
    [all...]

Completed in 522 milliseconds