HomeSort by relevance Sort by last modified time
    Searched refs:command_line (Results 26 - 50 of 868) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/android/common/
daemon.h 12 bool HasHelpSwitch(const CommandLine& command_line);
14 bool HasNoSpawnDaemonSwitch(const CommandLine& command_line);
  /external/chromium/chrome/browser/extensions/
extension_devtools_browsertest.h 17 virtual void SetUpCommandLine(CommandLine* command_line);
  /external/chromium/chrome/browser/first_run/
upgrade_util_win.h 23 bool DoUpgradeTasks(const CommandLine& command_line);
upgrade_util.h 21 bool RelaunchChromeBrowser(const CommandLine& command_line);
  /external/chromium_org/chrome/browser/extensions/api/idltest/
idltest_apitest.cc 13 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
14 ExtensionApiTest::SetUpCommandLine(command_line);
15 command_line->AppendSwitch(
  /external/chromium_org/chrome/browser/extensions/
window_open_interactive_apitest.cc 5 #include "base/command_line.h"
10 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
11 ExtensionApiTest::SetUpCommandLine(command_line);
12 command_line->AppendSwitch(switches::kEnablePanels);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
guest_mode_options_ui_browsertest.cc 5 #include "base/command_line.h"
18 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
19 command_line->AppendSwitch(chromeos::switches::kGuestSession);
20 command_line->AppendSwitch(switches::kIncognito);
  /external/chromium_org/content/renderer/pepper/
ppb_gpu_blacklist_private_impl.cc 7 #include "base/command_line.h"
19 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
20 if (command_line)
22 command_line->HasSwitch(switches::kDisablePepper3d));
  /external/chromium_org/chrome/browser/app_mode/
app_mode_utils.cc 8 #include "base/command_line.h"
43 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
44 return command_line->HasSwitch(switches::kKioskMode) ||
49 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
50 return command_line->HasSwitch(switches::kForceAppMode) &&
51 command_line->HasSwitch(switches::kAppId);
  /external/chromium/chrome/common/
profiling.cc 8 #include "base/command_line.h"
20 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
21 if (command_line.HasSwitch(switches::kProfilingFile))
22 profile_name = command_line.GetSwitchValueASCII(switches::kProfilingFile);
26 command_line.GetSwitchValueASCII(switches::kProcessType);
43 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
45 command_line.GetSwitchValueASCII(switches::kProfilingFlush);
62 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
64 command_line.GetSwitchValueASCII(switches::kProcessType);
66 if (command_line.HasSwitch(switches::kProfilingAtStart))
76 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
107 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
    [all...]
logging_chrome.h 36 void InitChromeLogging(const CommandLine& command_line,
41 FilePath GetSessionLogFile(const CommandLine& command_line);
44 void RedirectChromeLogging(const CommandLine& command_line);
  /external/chromium_org/net/tools/dump_cache/
dump_cache.cc 12 #include "base/command_line.h"
76 int LaunchSlave(CommandLine command_line,
79 bool do_upgrade = command_line.HasSwitch(kUpgrade);
80 bool do_convert_to_text = command_line.HasSwitch(kDumpToFiles);
85 command_line.SetProgram(program);
89 command_line.AppendSwitch(kSlave);
91 command_line.AppendSwitchNative(kPipe, pipe_number);
92 if (!base::LaunchProcess(command_line, base::LaunchOptions(), NULL)) {
94 command_line.GetProgram().value().c_str());
111 const CommandLine& command_line = *CommandLine::ForCurrentProcess() local
    [all...]
  /external/chromium_org/chrome/browser/invalidation/
invalidation_service_util.cc 8 #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::kSyncTrySsltcpFirstForXmpp);
34 command_line.HasSwitch(switches::kSyncInvalidateXmppLogin);
39 command_line.HasSwitch(switches::kSyncAllowInsecureXmppConnection);
invalidation_service_util.h 15 notifier::NotifierOptions ParseNotifierOptions(const CommandLine& command_line);
  /external/chromium_org/chrome/browser/ui/sync/
profile_signin_confirmation_helper_browsertest.cc 8 #include "base/command_line.h"
21 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
23 InProcessBrowserTest::SetUpCommandLine(command_line);
24 command_line->AppendSwitch(switches::kForceFirstRun);
  /external/chromium_org/chrome/common/net/
net_error_info.cc 5 #include "base/command_line.h"
46 CommandLine* command_line = CommandLine::ForCurrentProcess();
48 if (command_line->HasSwitch(switches::kDisableDnsProbes))
50 else if (command_line->HasSwitch(switches::kEnableDnsProbes))
  /external/chromium_org/remoting/host/
usage_stats_consent_mac.cc 9 #include "base/command_line.h"
24 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
25 if (command_line->HasSwitch(kHostConfigSwitchName)) {
27 command_line->GetSwitchValuePath(kHostConfigSwitchName);
  /external/chromium_org/ui/base/touch/
touch_enabled.cc 6 #include "base/command_line.h"
14 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
16 command_line.HasSwitch(switches::kTouchEvents) ?
17 command_line.GetSwitchValueASCII(switches::kTouchEvents) :
  /external/chromium_org/ui/base/
ui_base_switches_util.cc 7 #include "base/command_line.h"
33 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
34 if (command_line->HasSwitch(switches::kDisableNewDialogStyle))
36 if (command_line->HasSwitch(switches::kEnableNewDialogStyle))
  /external/chromium_org/chrome/browser/
about_flags_unittest.cc 214 CommandLine command_line(CommandLine::NO_PROGRAM);
215 command_line.AppendSwitch("foo");
217 EXPECT_TRUE(command_line.HasSwitch("foo"));
218 EXPECT_FALSE(command_line.HasSwitch(kSwitch1));
220 ConvertFlagsToSwitches(&flags_storage_, &command_line);
222 EXPECT_TRUE(command_line.HasSwitch("foo"));
223 EXPECT_TRUE(command_line.HasSwitch(kSwitch1));
229 CommandLine command_line(CommandLine::NO_PROGRAM);
230 command_line.AppendSwitch("foo");
236 command_line));
    [all...]
browser_process_platform_part_base.h 22 const CommandLine& command_line);
  /external/chromium_org/chrome/browser/extensions/api/activity_log_private/
activity_log_private_apitest.cc 24 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
25 ExtensionApiTest::SetUpCommandLine(command_line);
27 command_line->AppendSwitch(switches::kEnableExtensionActivityLogging);
28 command_line->AppendSwitch(switches::kEnableExtensionActivityLogTesting);
  /external/chromium_org/chrome/test/base/
test_launcher_utils.h 18 // Appends browser switches to provided |command_line| to be used
20 void PrepareBrowserCommandLineForTests(CommandLine* command_line);
  /external/chromium_org/content/ppapi_plugin/
ppapi_broker_main.cc 18 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/content/public/app/
startup_helper_win.h 31 void SetupCRT(const CommandLine& command_line);

Completed in 2685 milliseconds

12 3 4 5 6 7 8 91011>>