Searched refs:command_line (Results 176 - 200 of 915) sorted by relevance

1234567891011>>

/external/lldb/examples/customization/pwd-cd-and-system/
H A Dutils.py36 def system(debugger, command_line, result, dict):
38 args = shlex.split(command_line)
/external/chromium_org/chrome/app/
H A Dchrome_exe_main_win.cc11 #include "base/command_line.h"
53 bool ContainsNonFastStartFlag(const CommandLine& command_line) { argument
54 const CommandLine::SwitchMap& switches = command_line.GetSwitches();
65 bool AttemptFastNotify(const CommandLine& command_line) { argument
66 if (ContainsNonFastStartFlag(command_line))
/external/chromium_org/chrome/browser/
H A Dbrowser_process_platform_part_aurawin.h27 const base::CommandLine& command_line) OVERRIDE;
H A Dbrowser_process_platform_part_base.h29 const base::CommandLine& command_line);
/external/chromium_org/chrome/browser/chromeos/first_run/
H A Dfirst_run.cc5 #include "base/command_line.h"
68 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable
69 bool launched_in_test = command_line->HasSwitch(::switches::kTestType);
71 command_line->HasSwitch(switches::kOobeSkipPostLogin);
73 bool first_run_forced = command_line->HasSwitch(switches::kForceFirstRunUI);
/external/chromium_org/chrome/browser/chromeos/login/
H A Dchrome_restart_request.cc10 #include "base/command_line.h"
69 CommandLine* command_line) {
70 DCHECK_NE(&base_command_line, command_line);
213 command_line->CopySwitchesFrom(base_command_line,
218 command_line->AppendArg(start_url.spec());
225 command_line->AppendSwitchASCII(it.key(), value);
228 std::string cmd_line_str = command_line->GetCommandLineString();
245 void ReLaunch(const std::string& command_line) { argument
249 base::SplitString(command_line, ' ', &argv);
265 explicit ChromeRestartRequest(const std::string& command_line);
66 DeriveCommandLine(const GURL& start_url, const CommandLine& base_command_line, const base::DictionaryValue& new_switches, CommandLine* command_line) argument
282 ChromeRestartRequest(const std::string& command_line) argument
333 GetOffTheRecordCommandLine( const GURL& start_url, bool is_oobe_completed, const CommandLine& base_command_line, CommandLine* command_line) argument
360 RestartChrome(const std::string& command_line) argument
[all...]
H A Dscreenshot_testing_mixin.h10 #include "base/command_line.h"
31 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE;
H A Dmixin_based_browser_test.cc15 void MixinBasedBrowserTest::SetUpCommandLine(base::CommandLine* command_line) { argument
19 (*it)->SetUpCommandLine(command_line);
21 InProcessBrowserTest::SetUpCommandLine(command_line);
H A Dsession_login_browsertest.cc33 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
34 LoginManagerTest::SetUpCommandLine(command_line);
35 command_line->AppendSwitch(::switches::kCreateBrowserOnStartupForTests);
/external/chromium_org/chrome/browser/media/
H A Dwv_test_license_server_config.h18 virtual bool GetServerCommandLine(base::CommandLine* command_line) OVERRIDE;
H A Dchrome_webrtc_disable_encryption_flag_browsertest.cc5 #include "base/command_line.h"
38 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
40 command_line->AppendSwitch(switches::kUseFakeDeviceForMediaStream);
43 command_line->AppendSwitch(switches::kDisableWebRtcEncryption);
/external/chromium_org/chrome/browser/nacl_host/test/
H A Dgdb_debug_stub_browsertest.cc5 #include "base/command_line.h"
22 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
30 void NaClGdbDebugStubTest::SetUpCommandLine(CommandLine* command_line) { argument
31 PPAPINaClNewlibTest::SetUpCommandLine(command_line);
32 command_line->AppendSwitch(switches::kEnableNaClDebug);
/external/chromium_org/chrome/common/
H A Dauto_start_linux.h18 const std::string& command_line,
H A Dchrome_content_client_unittest.cc7 #include "base/command_line.h"
71 CommandLine* command_line = CommandLine::ForCurrentProcess();
74 ASSERT_FALSE(command_line->HasSwitch(switches::kUseMobileUserAgent));
78 command_line->AppendSwitch(switches::kUseMobileUserAgent);
79 ASSERT_TRUE(command_line->HasSwitch(switches::kUseMobileUserAgent));
/external/chromium_org/chromecast/shell/browser/
H A Dcast_browser_main_parts.cc7 #include "base/command_line.h"
45 void AddDefaultCommandLineSwitches(CommandLine* command_line) { argument
48 command_line->AppendSwitchASCII(
64 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
65 AddDefaultCommandLineSwitches(command_line);
/external/chromium_org/mojo/shell/
H A Dchild_process.h34 static scoped_ptr<ChildProcess> Create(const base::CommandLine& command_line);
/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
/external/lldb/examples/customization/bin-utils/
H A Dbinutils.py63 def utob(debugger, command_line, result, dict):
68 args = command_line.split()
94 def itob(debugger, command_line, result, dict):
99 args = command_line.split()
/external/chromium_org/chrome/browser/apps/
H A Dwindow_controls_browsertest.cc14 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
15 extensions::PlatformAppBrowserTest::SetUpCommandLine(command_line);
16 command_line->AppendSwitch(extensions::switches::kEnableAppWindowControls);
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dinput_method_apitest_chromeos.cc9 #include "base/command_line.h"
67 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
68 ExtensionApiTest::SetUpCommandLine(command_line);
69 command_line->AppendSwitchASCII(
/external/chromium_org/chrome/browser/chromeos/login/session/
H A Dchrome_session_manager.cc7 #include "base/command_line.h"
25 bool ShouldAutoLaunchKioskApp(const base::CommandLine& command_line) { argument
27 return command_line.HasSwitch(switches::kLoginManager) &&
28 !command_line.HasSwitch(switches::kForceLoginManagerInTests) &&
/external/chromium_org/chrome/browser/chromeos/settings/
H A Downer_flags_storage.cc7 #include "base/command_line.h"
55 CommandLine command_line(CommandLine::NO_PROGRAM);
56 ::about_flags::ConvertFlagsToSwitches(this, &command_line,
58 CommandLine::StringVector switches = command_line.argv();
/external/chromium_org/chrome/browser/extensions/api/activity_log_private/
H A Dactivity_log_private_apitest.cc31 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
32 ExtensionApiTest::SetUpCommandLine(command_line);
34 command_line->AppendSwitch(switches::kEnableExtensionActivityLogging);
/external/chromium_org/chrome/browser/extensions/api/feedback_private/
H A Dfeedback_browsertest.cc39 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
40 command_line->AppendSwitch(::switches::kEnableUserMediaScreenCapturing);
41 InProcessBrowserTest::SetUpCommandLine(command_line);
/external/chromium_org/chrome/browser/extensions/
H A Dpack_extension_unittest.cc5 #include "base/command_line.h"
35 CommandLine command_line(CommandLine::NO_PROGRAM);
36 command_line.AppendSwitchPath(switches::kPackExtension,
38 return startup_helper_.PackExtension(command_line);

Completed in 2821 milliseconds

1234567891011>>