Searched defs:switch_value (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/chromecast/shell/browser/
H A Dcast_browser_main_parts.cc34 const char* const switch_value; member in struct:chromecast::shell::__anon6076::DefaultCommandLineSwitch
50 std::string(g_default_switches[i].switch_value));
/external/chromium_org/chrome/browser/
H A Dbrowser_shutdown.cc236 CommandLine::StringType switch_value = i->second; local
237 if (!switch_value.empty())
H A Dabout_flags.cc76 #define SINGLE_VALUE_TYPE_AND_VALUE(command_line_switch, switch_value) \
78 command_line_switch, switch_value, NULL, NULL, NULL, 0
2337 const std::string& switch_value,
2340 (*name_to_switch_map)[key] = std::make_pair(switch_name, switch_value);
2335 SetFlagToSwitchMapping(const std::string& key, const std::string& switch_name, const std::string& switch_value, NameToSwitchAndValueMap* name_to_switch_map) argument
H A Dbrowser_process_impl.cc1201 CommandLine::StringType switch_value = i->second; local
1202 if (switch_value.length() > 0) {
H A Dio_thread.cc607 std::string switch_value = command_line.GetSwitchValueASCII( local
610 base::SplitString(switch_value, ',', &logs);
/external/chromium_org/extensions/common/
H A Dfeature_switch.cc147 std::string switch_value; local
148 base::TrimWhitespaceASCII(temp, base::TRIM_ALL, &switch_value);
150 if (switch_value == "1")
153 if (switch_value == "0")
/external/chromium_org/base/test/launcher/
H A Dunit_test_launcher.cc451 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/chrome/browser/ssl/
H A Dchrome_ssl_host_state_delegate.cc84 std::string switch_value = local
88 if (!base::StringToInt64(base::StringPiece(switch_value),
92 << "memory length: " << switch_value;
/external/chromium_org/content/common/sandbox_linux/
H A Dsandbox_linux.cc297 const std::string switch_value = local
299 sandbox_failure_fatal = switch_value != "no";
/external/chromium_org/base/
H A Dcommand_line.cc54 // 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)) {
56 IsSwitch(const CommandLine::StringType& string, CommandLine::StringType* switch_string, CommandLine::StringType* switch_value) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_system_impl.cc270 std::string switch_value = command_line->GetSwitchValueASCII( local
272 if (switch_value == switches::kExtensionContentVerificationBootstrap)
274 else if (switch_value == switches::kExtensionContentVerificationEnforce)
276 else if (switch_value ==
/external/chromium_org/google_apis/gaia/
H A Dgaia_urls.cc48 void GetSwitchValueWithDefault(const char* switch_value, argument
52 if (command_line->HasSwitch(switch_value)) {
53 *output_value = command_line->GetSwitchValueASCII(switch_value);
59 GURL GetURLSwitchValueWithDefault(const char* switch_value, argument
62 GetSwitchValueWithDefault(switch_value, default_value, &string_value);
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_field_trial.cc215 const string switch_value = local
218 if (switch_value == switches::kPrerenderModeSwitchValueAuto) {
220 } else if (switch_value == switches::kPrerenderModeSwitchValueDisabled) {
222 } else if (switch_value.empty() ||
223 switch_value == switches::kPrerenderModeSwitchValueEnabled) {
230 << switch_value;
281 const string switch_value = local
285 if (switch_value == switches::kPrerenderFromOmniboxSwitchValueEnabled)
288 if (switch_value == switches::kPrerenderFromOmniboxSwitchValueDisabled)
291 DCHECK_EQ(switches::kPrerenderFromOmniboxSwitchValueAuto, switch_value);
[all...]
/external/chromium_org/content/browser/compositor/
H A Ddelegated_frame_host.cc808 std::string switch_value = local
811 if (switch_value == "fast")
813 else if (switch_value == "good")
815 else if (switch_value == "best")
/external/chromium_org/components/crash/app/
H A Dbreakpad_linux.cc208 std::string switch_value = local
210 GetCrashReporterClient()->SetCrashReporterClientIdFromGUID(switch_value);

Completed in 2521 milliseconds