HomeSort by relevance Sort by last modified time
    Searched defs:command_line (Results 51 - 75 of 317) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/policy/cloud/
cloud_policy_manager_browsertest.cc 5 #include "base/command_line.h"
53 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable
54 command_line->AppendSwitchASCII(switches::kDeviceManagementUrl,
  /external/chromium_org/chrome/browser/renderer_context_menu/
spellchecker_submenu_observer_hunspell.cc 7 #include "base/command_line.h"
80 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
81 if (command_line->HasSwitch(switches::kEnableSpellingAutoCorrect)) {
  /external/chromium_org/chrome/browser/ui/aura/
chrome_browser_main_extra_parts_aura.cc 7 #include "base/command_line.h"
66 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
67 if (command_line->HasSwitch(switches::kViewerConnect) ||
68 command_line->HasSwitch(switches::kViewerLaunchViaAppId)) {
72 const CommandLine* command_line = CommandLine::ForCurrentProcess();
73 if (command_line->HasSwitch(switches::kOpenAsh))
148 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
149 if (command_line.HasSwitch(switches::kUserDataDir))
  /external/chromium_org/chrome/browser/ui/extensions/
application_launch.h 8 #include "base/command_line.h"
78 base::CommandLine command_line; member in struct:AppLaunchParams
  /external/chromium_org/chrome/browser/ui/webui/
version_ui.cc 7 #include "base/command_line.h"
91 html_source->AddString("command_line", base::WideToUTF16(
94 std::string command_line; local
98 command_line += " " + *iter;
99 // TODO(viettrungluu): |command_line| could really have any encoding, whereas
101 html_source->AddString("command_line", command_line);
  /external/chromium_org/chrome/common/
pepper_permission_util.cc 9 #include "base/command_line.h"
79 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
81 command_line.GetSwitchValueASCII(command_line_switch);
  /external/chromium_org/chromecast/shell/browser/devtools/
remote_debugging_server.cc 9 #include "base/command_line.h"
74 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
76 if (command_line->HasSwitch(switches::kRemoteDebuggingSocketName)) {
77 socket_name = command_line->GetSwitchValueASCII(
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_service_url_unittest.cc 5 #include "base/command_line.h"
85 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
86 command_line->AppendSwitch(::switches::kReduceSecurityForTesting);
89 command_line->AppendSwitchASCII(switches::kWalletServiceUseSandbox, "0");
94 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
95 command_line->AppendSwitchASCII(switches::kWalletServiceUseSandbox, "1");
100 command_line->AppendSwitchASCII(switches::kWalletServiceUrl,
111 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
112 command_line->AppendSwitchASCII(switches::kWalletServiceUseSandbox, "1");
  /external/chromium_org/components/autofill/core/common/
password_generation_util.cc 7 #include "base/command_line.h"
51 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
52 if (command_line->HasSwitch(switches::kDisablePasswordGeneration))
55 if (command_line->HasSwitch(switches::kEnablePasswordGeneration))
  /external/chromium_org/components/session_manager/core/
session_manager.cc 10 #include "base/command_line.h"
64 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
66 command_line->HasSwitch(chromeos::switches::kLoginUser);
  /external/chromium_org/components/translate/core/common/
translate_util.cc 8 #include "base/command_line.h"
117 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
118 if (command_line->HasSwitch(switches::kTranslateSecurityOrigin)) {
120 command_line->GetSwitchValueASCII(switches::kTranslateSecurityOrigin);
  /external/chromium_org/content/browser/
browser_shutdown_profile_dumper.cc 8 #include "base/command_line.h"
78 const base::CommandLine& command_line = local
81 command_line.GetSwitchValuePath(switches::kTraceShutdownFile);
  /external/chromium_org/content/public/test/
content_browser_test.cc 7 #include "base/command_line.h"
64 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
65 command_line->AppendSwitch(switches::kContentBrowserTest);
67 SetUpCommandLine(command_line);
72 if (command_line->HasSwitch(switches::kSingleProcess)) {
89 command_line->AppendSwitchPath(switches::kBrowserSubprocessPath,
  /external/chromium_org/content/shell/android/browsertests_apk/
content_browser_tests_android.cc 18 #include "base/command_line.h"
76 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
77 command_line->AppendArguments(CommandLine(argc, &argv[0]), false);
80 command_line->AppendSwitch(content::kSingleProcessTestsFlag);
81 command_line->AppendSwitch(switches::kUseFakeDeviceForMediaStream);
82 command_line->AppendSwitch(switches::kUseFakeUIForMediaStream);
85 command_line->AppendSwitchASCII(switches::kRemoteDebuggingSocketName,
  /external/chromium_org/content/shell/browser/
shell_url_request_context_getter.cc 7 #include "base/command_line.h"
98 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
103 if (command_line.HasSwitch(switches::kDumpRenderTree))
122 if (command_line.HasSwitch(switches::kDumpRenderTree)) {
175 if (command_line.HasSwitch(switches::kTestingFixedHttpPort)) {
177 base::StringToInt(command_line.GetSwitchValueASCII(
181 if (command_line.HasSwitch(switches::kTestingFixedHttpsPort)) {
183 base::StringToInt(command_line.GetSwitchValueASCII(
187 if (command_line.HasSwitch(switches::kHostResolverRules)) {
191 command_line.GetSwitchValueASCII(switches::kHostResolverRules))
    [all...]
  /external/chromium_org/content/shell/common/
shell_content_client.cc 7 #include "base/command_line.h"
23 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
24 if (command_line->HasSwitch(switches::kUseMobileUserAgent))
  /external/chromium_org/content/test/
blink_test_environment.cc 9 #include "base/command_line.h"
49 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
51 command_line.GetSwitchValueASCII(switches::kBlinkPlatformLogChannels));
  /external/chromium_org/extensions/shell/browser/
default_shell_browser_main_delegate.cc 7 #include "base/command_line.h"
24 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
25 if (command_line->HasSwitch(switches::kAppShellAppPath)) {
27 command_line->GetSwitchValueNative(switches::kAppShellAppPath));
  /external/chromium_org/jingle/glue/
logging_unittest.cc 16 #include "base/command_line.h"
53 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
57 command_line->AppendSwitchASCII("vmodule", value);
  /external/chromium_org/net/spdy/fuzzing/
hpack_example_generator.cc 6 #include "base/command_line.h"
35 const base::CommandLine& command_line = local
38 if (!command_line.HasSwitch(kFileToWrite) ||
39 !command_line.HasSwitch(kExampleCount)) {
45 string file_to_write = command_line.GetSwitchValueASCII(kFileToWrite);
48 base::StringToInt(command_line.GetSwitchValueASCII(kExampleCount),
hpack_fuzz_mutator.cc 5 #include "base/command_line.h"
33 const base::CommandLine& command_line = local
36 if (!command_line.HasSwitch(kFileToParse) ||
37 !command_line.HasSwitch(kFileToWrite) ||
38 !command_line.HasSwitch(kFlipsPerThousand)) {
45 string file_to_parse = command_line.GetSwitchValueASCII(kFileToParse);
46 string file_to_write = command_line.GetSwitchValueASCII(kFileToWrite);
49 CHECK(base::StringToInt(command_line.GetSwitchValueASCII(kFlipsPerThousand),
  /external/chromium_org/net/tools/testserver/
run_testserver.cc 8 #include "base/command_line.h"
29 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
41 if (command_line->GetSwitches().empty() ||
42 command_line->HasSwitch("help")) {
48 if (command_line->HasSwitch("http")) {
50 } else if (command_line->HasSwitch("https")) {
52 } else if (command_line->HasSwitch("ws")) {
54 } else if (command_line->HasSwitch("wss")) {
56 } else if (command_line->HasSwitch("ftp")) {
61 if (command_line->HasSwitch("ssl-cert")
    [all...]
  /external/chromium_org/ppapi/proxy/
ppp_messaging_proxy_perftest.cc 5 #include "base/command_line.h"
59 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
60 if (command_line) {
61 if (command_line->HasSwitch("seed")) {
62 base::StringToInt(command_line->GetSwitchValueASCII("seed"),
65 if (command_line->HasSwitch("string_count")) {
66 base::StringToInt(command_line->GetSwitchValueASCII("string_count"),
69 if (command_line->HasSwitch("max_string_size")) {
70 base::StringToInt(command_line->GetSwitchValueASCII("max_string_size"),
  /external/chromium_org/remoting/tools/
breakpad_tester_win.cc 9 #include "base/command_line.h"
43 const base::CommandLine* command_line = local
45 if (command_line->HasSwitch(kHelpSwitchName) ||
46 command_line->HasSwitch(kQuestionSwitchName)) {
51 base::CommandLine::StringVector args = command_line->GetArgs();
  /external/chromium_org/sandbox/win/tools/launcher/
launcher.cc 89 ATL::CString command_line; local
121 if (command_line.GetLength()) {
122 command_line += L' ';
124 command_line += argv[i];
128 if (!command_line.GetLength()) {
134 wprintf(L"\nLaunching command line: \"%ls\"\n", command_line.GetBuffer());
138 command_line.GetBuffer(),

Completed in 1672 milliseconds

1 23 4 5 6 7 8 91011>>