Searched defs:command_line (Results 1 - 25 of 474) sorted by relevance

1234567891011>>

/external/chromium_org/tools/memory_inspector/
H A Dmemory_inspector_cli10 from memory_inspector.frontends import command_line namespace
14 sys.exit(command_line.main())
/external/chromium_org/chrome/browser/first_run/
H A Dtry_chrome_dialog_view_browsertest.cc5 #include "base/command_line.h"
32 virtual void SetUpCommandLine(CommandLine* command_line) { argument
33 command_line->AppendSwitchASCII(switches::kTryChromeAgain, "10001");
H A Dupgrade_util_mac.cc5 #include "base/command_line.h"
10 bool RelaunchChromeBrowser(const CommandLine& command_line) { argument
11 return mac_relauncher::RelaunchApp(command_line.argv());
H A Dupgrade_util.cc7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon4058
19 command_line = new_command_line;
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
29 delete command_line;
30 command_line = NULL;
/external/chromium_org/content/common/
H A Dcontent_switches_internal.cc7 #include "base/command_line.h"
17 const base::CommandLine& command_line = local
21 if (command_line.HasSwitch(switches::kDisablePinch))
29 return command_line.HasSwitch(switches::kEnableViewport) ||
30 command_line.HasSwitch(switches::kEnablePinch);
H A Dsandbox_init_mac.cc7 #include "base/command_line.h"
34 const base::CommandLine& command_line = local
36 if (command_line.HasSwitch(switches::kNoSandbox))
40 command_line.GetSwitchValueASCII(switches::kProcessType);
50 command_line.GetSwitchValuePath(switches::kUtilityProcessAllowedDir);
52 if (command_line.HasSwitch(switches::kDisableGpuSandbox))
H A Dsandbox_init_win.cc7 #include "base/command_line.h"
17 const base::CommandLine& command_line = local
28 if (!command_line.HasSwitch(switches::kNoSandbox)) {
38 if (command_line.HasSwitch(switches::kNoSandbox))
/external/chromium_org/ui/base/touch/
H A Dtouch_enabled.cc6 #include "base/command_line.h"
15 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
17 command_line.HasSwitch(switches::kTouchEvents) ?
18 command_line.GetSwitchValueASCII(switches::kTouchEvents) :
/external/chromium_org/chrome/browser/dom_distiller/
H A Dprofile_utils.cc7 #include "base/command_line.h"
16 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
17 if (command_line.HasSwitch(switches::kEnableDomDistiller)) {
/external/chromium_org/chrome/installer/mini_installer/
H A Dconfiguration_test.cc14 explicit TestConfiguration(const wchar_t* command_line) : Configuration() { argument
15 Initialize(command_line);
18 void Initialize(const wchar_t* command_line) { argument
19 ASSERT_TRUE(InitializeFromCommandLine(command_line));
62 TestConfiguration(kCommandLines[i]).command_line());
/external/chromium_org/content/child/
H A Druntime_features.cc7 #include "base/command_line.h"
83 const base::CommandLine& command_line) {
84 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures))
89 if (command_line.HasSwitch(switches::kDisableDatabases))
92 if (command_line.HasSwitch(switches::kDisableApplicationCache))
95 if (command_line.HasSwitch(switches::kDisableDesktopNotifications))
98 if (command_line.HasSwitch(switches::kDisableLocalStorage))
101 if (command_line.HasSwitch(switches::kDisableSessionStorage))
104 if (command_line.HasSwitch(switches::kDisableMediaSource))
107 if (command_line
82 SetRuntimeFeaturesDefaultsAndUpdateFromArgs( const base::CommandLine& command_line) argument
[all...]
/external/chromium_org/mojo/shell/
H A Dshell_test_main.cc6 #include "base/command_line.h"
16 const base::CommandLine& command_line = local
19 if (command_line.HasSwitch(switches::kChildProcessType)) {
21 mojo::shell::ChildProcess::Create(command_line);
/external/chromium_org/chrome/browser/android/
H A Dchrome_startup_flags.cc12 #include "base/command_line.h"
23 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
24 if (!command_line->HasSwitch(switch_string))
25 command_line->AppendSwitch(switch_string);
30 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
31 if (!command_line->HasSwitch(switch_string))
32 command_line->AppendSwitchASCII(switch_string, value);
H A Dvoice_search_tab_helper.cc7 #include "base/command_line.h"
27 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
28 if (command_line.HasSwitch(
/external/chromium_org/chrome/browser/app_mode/
H A Dapp_mode_utils.cc8 #include "base/command_line.h"
42 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
43 return command_line->HasSwitch(switches::kKioskMode) ||
48 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
49 return command_line->HasSwitch(switches::kForceAppMode) &&
50 command_line->HasSwitch(switches::kAppId);
/external/chromium_org/chrome/browser/ui/webui/
H A Ddownloads_ui_browsertest.cc7 #include "base/command_line.h"
27 CommandLine* command_line) {
28 command_line->AppendSwitchASCII(switches::kSupervisedUserId, "asdf");
26 SetUpCommandLine( CommandLine* command_line) argument
/external/chromium_org/chrome/test/base/
H A Dtest_launcher_utils.cc7 #include "base/command_line.h"
23 void PrepareBrowserCommandLineForTests(CommandLine* command_line) { argument
25 command_line->AppendSwitch(switches::kDisableWebResources);
29 command_line->AppendSwitch(switches::kDisablePreconnect);
32 command_line->AppendSwitch(switches::kNoFirstRun);
36 command_line->AppendSwitch(switches::kNoDefaultBrowserCheck);
40 if (!command_line->HasSwitch(switches::kEnableLogging))
41 command_line->AppendSwitchASCII(switches::kEnableLogging, "stderr");
42 if (!command_line->HasSwitch(switches::kLoggingLevel))
43 command_line
[all...]
/external/chromium_org/components/invalidation/
H A Dinvalidation_service_util.cc8 #include "base/command_line.h"
16 const CommandLine& command_line) {
19 if (command_line.HasSwitch(switches::kSyncNotificationHostPort)) {
22 command_line.GetSwitchValueASCII(
29 command_line.HasSwitch(switches::kSyncAllowInsecureXmppConnection);
15 ParseNotifierOptions( const CommandLine& command_line) argument
/external/chromium_org/components/translate/core/common/
H A Dtranslate_util_unittest.cc7 #include "base/command_line.h"
91 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
92 command_line->AppendSwitchASCII(translate::switches::kTranslateSecurityOrigin,
/external/chromium_org/content/ppapi_plugin/
H A Dppapi_broker_main.cc18 const CommandLine& command_line = parameters.command_line; local
19 if (command_line.HasSwitch(switches::kPpapiStartupDialog)) {
31 new PpapiThread(parameters.command_line, true)); // Broker.
/external/chromium_org/tools/site_compare/commands/
H A Dmeasure.py8 1. The command_line package from tools/site_compare
21 import command_line namespace
H A Dscrape.py8 1. The command_line package from tools/site_compare
21 import command_line namespace
/external/chromium_org/ui/compositor/test/
H A Dcontext_factories_for_test.cc7 #include "base/command_line.h"
27 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
28 if (command_line->HasSwitch(switches::kEnablePixelOutputInTests))
/external/chromium_org/ui/native_theme/
H A Dnative_theme_switches.cc5 #include "base/command_line.h"
21 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
23 if (command_line.HasSwitch(switches::kDisableOverlayScrollbar))
25 else if (command_line.HasSwitch(switches::kEnableOverlayScrollbar))
/external/chromium_org/chrome/browser/chromeos/login/session/
H A Drestore_after_crash_session_manager_delegate.cc7 #include "base/command_line.h"
30 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
37 if (command_line->HasSwitch(chromeos::switches::kLoginUser)) {
59 bool is_running_test = command_line->HasSwitch(::switches::kTestName) ||
60 command_line->HasSwitch(::switches::kTestType);

Completed in 479 milliseconds

1234567891011>>