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

  /external/chromium_org/extensions/browser/
content_verifier.cc 211 std::string switch_value = command_line->GetSwitchValueASCII( local
213 if (switch_value == switches::kExtensionContentVerificationBootstrap)
215 else if (switch_value == switches::kExtensionContentVerificationEnforce)
217 else if (switch_value ==
  /external/chromium_org/extensions/common/
feature_switch.cc 133 std::string switch_value; local
134 base::TrimWhitespaceASCII(temp, base::TRIM_ALL, &switch_value);
136 if (switch_value == "1")
139 if (switch_value == "0")
  /external/chromium_org/chrome/browser/
browser_shutdown.cc 238 CommandLine::StringType switch_value = i->second; local
239 if (!switch_value.empty())
browser_process_impl.cc 1082 CommandLine::StringType switch_value = i->second; local
    [all...]
io_thread.cc 574 std::string switch_value = command_line.GetSwitchValueASCII( local
577 base::SplitString(switch_value, ',', &logs);
    [all...]
  /external/chromium_org/base/
command_line.cc 54 // Fills in |switch_string| and |switch_value| if |string| is a switch.
58 CommandLine::StringType* switch_value) {
60 switch_value->clear();
68 *switch_value = string.substr(equals_position + 1);
81 CommandLine::StringType switch_value; local
83 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
86 switch_value); local
88 command_line.AppendSwitchNative(switch_string, switch_value);
270 StringType switch_value; local
274 if (parse_switches && IsSwitch(arg, &switch_string, &switch_value)) {
    [all...]
  /external/chromium_org/base/test/launcher/
unit_test_launcher.cc 451 std::string switch_value =
453 if (!StringToInt(switch_value, result) || *result < 1) {
454 LOG(ERROR) << "Invalid value for " << switch_name << ": " << switch_value; local
  /external/chromium_org/content/common/sandbox_linux/
sandbox_linux.cc 300 const std::string switch_value = local
302 sandbox_failure_fatal = switch_value != "no";
  /external/chromium_org/chrome/browser/performance_monitor/
performance_monitor.cc 139 std::string switch_value = CommandLine::ForCurrentProcess()-> local
142 if (!switch_value.empty()) {
144 if (!base::StringToInt(switch_value, &specified_interval) ||
  /external/chromium_org/content/browser/compositor/
delegated_frame_host.cc 672 std::string switch_value = local
674 if (switch_value == "fast")
676 else if (switch_value == "good")
678 else if (switch_value == "best")
  /external/chromium_org/chrome/browser/prerender/
prerender_field_trial.cc 187 const string switch_value = local
190 if (switch_value == switches::kPrerenderModeSwitchValueAuto) {
192 } else if (switch_value == switches::kPrerenderModeSwitchValueDisabled) {
194 } else if (switch_value.empty() ||
195 switch_value == switches::kPrerenderModeSwitchValueEnabled) {
202 << switch_value;
253 const string switch_value = local
257 if (switch_value == switches::kPrerenderFromOmniboxSwitchValueEnabled)
260 if (switch_value == switches::kPrerenderFromOmniboxSwitchValueDisabled)
263 DCHECK_EQ(switches::kPrerenderFromOmniboxSwitchValueAuto, switch_value);
    [all...]
  /external/chromium_org/components/breakpad/app/
breakpad_linux.cc 208 std::string switch_value = local
210 GetBreakpadClient()->SetClientID(switch_value);
    [all...]

Completed in 1026 milliseconds