Searched refs:command_line (Results 1 - 25 of 861) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/first_run/
H A Dupgrade_util.cc7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon2200
19 command_line = new_command_line;
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
29 delete command_line;
30 command_line = NULL;
H A Dfirst_run_browser_process.cc7 #include "base/command_line.h"
9 FirstRunBrowserProcess::FirstRunBrowserProcess(const CommandLine& command_line) argument
10 : BrowserProcessImpl(command_line) {
/external/chromium_org/chrome/browser/first_run/
H A Dupgrade_util.cc7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon5118
19 command_line = new_command_line;
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
29 delete command_line;
30 command_line = NULL;
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 Dtry_chrome_dialog_view_browsertest.cc5 #include "base/command_line.h"
29 virtual void SetUpCommandLine(CommandLine* command_line) { argument
30 command_line->AppendSwitchASCII(switches::kTryChromeAgain, "10001");
H A Dupgrade_util.h18 bool RelaunchChromeBrowser(const CommandLine& command_line);
24 bool RelaunchChromeWithModeSwitch(const CommandLine& command_line);
H A Dupgrade_util_win.h22 bool DoUpgradeTasks(const CommandLine& command_line);
/external/chromium/chrome/browser/extensions/
H A Dextension_devtools_browsertest.cc7 #include "base/command_line.h"
10 void ExtensionDevToolsBrowserTest::SetUpCommandLine(CommandLine* command_line) { argument
11 ExtensionBrowserTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExtensionTimelineApi);
H A Dextension_sidebar_apitest.cc5 #include "base/command_line.h"
11 void SetUpCommandLine(CommandLine* command_line) { argument
12 ExtensionApiTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
/external/e2fsprogs/ext2ed/
H A Dext2ed.h258 extern void help (char *command_line);
259 extern void set (char *command_line);
260 extern void set_device (char *command_line);
261 extern void set_offset (char *command_line);
262 extern void set_type (char *command_line);
263 extern void show (char *command_line);
264 extern void pgup (char *command_line);
265 extern void pgdn (char *command_line);
266 extern void redraw (char *command_line);
267 extern void remember (char *command_line);
[all...]
/external/chromium_org/chrome/browser/extensions/api/command_line_private/
H A Dcommand_line_private_apitest.cc5 #include "base/command_line.h"
10 // chrome/test/data/extensions/api_test/command_line/basics/test.js.
15 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
16 ExtensionApiTest::SetUpCommandLine(command_line);
17 command_line->AppendSwitch(kTestCommandLineSwitch);
22 EXPECT_TRUE(RunComponentExtensionTest("command_line/basics")) << message_;
/external/chromium_org/chrome/browser/extensions/api/debugger/
H A Ddebugger_extension_apitest.cc5 #include "base/command_line.h"
11 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
12 ExtensionApiTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kSilentDebuggerExtensionAPI);
/external/chromium_org/chrome/browser/extensions/api/terminal/
H A Dterminal_private_apitest.cc5 #include "base/command_line.h"
10 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
11 ExtensionApiTest::SetUpCommandLine(command_line);
12 command_line->AppendSwitchASCII(
/external/chromium_org/build/android/pylib/utils/
H A Drepo_utils.py14 command_line = ['git', 'log', '-1', '--pretty=format:%H']
15 output = cmd_helper.GetCmdOutput(command_line, cwd=in_directory)
/external/chromium_org/chrome/test/base/
H A Dtest_launcher_utils.cc7 #include "base/command_line.h"
22 void PrepareBrowserCommandLineForTests(CommandLine* command_line) { argument
24 command_line->AppendSwitch(switches::kDisableWebResources);
28 command_line->AppendSwitch(switches::kDisablePreconnect);
31 command_line->AppendSwitch(switches::kNoFirstRun);
35 command_line->AppendSwitch(switches::kNoDefaultBrowserCheck);
39 if (!command_line->HasSwitch(switches::kEnableLogging))
40 command_line->AppendSwitchASCII(switches::kEnableLogging, "stderr");
41 if (!command_line->HasSwitch(switches::kLoggingLevel))
42 command_line
[all...]
/external/chromium_org/content/child/
H A Druntime_features.cc7 #include "base/command_line.h"
49 const CommandLine& command_line) {
52 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures))
57 if (command_line.HasSwitch(switches::kDisableDatabases))
60 if (command_line.HasSwitch(switches::kDisableApplicationCache))
63 if (command_line.HasSwitch(switches::kDisableDesktopNotifications))
66 if (command_line.HasSwitch(switches::kDisableLocalStorage))
69 if (command_line.HasSwitch(switches::kDisableSessionStorage))
72 if (command_line.HasSwitch(switches::kDisableGeolocation))
75 if (command_line
48 SetRuntimeFeaturesDefaultsAndUpdateFromArgs( const CommandLine& command_line) argument
[all...]
H A Druntime_features.h13 const CommandLine& command_line);
/external/chromium/chrome/browser/diagnostics/
H A Ddiagnostics_main.h13 int DiagnosticsMain(const CommandLine& command_line);
/external/chromium/base/debug/
H A Ddebug_on_start_win.cc21 // Note: command_line is non-destructively modified.
22 bool DebugOnStart::FindArgument(wchar_t* command_line, const char* argument_c) { argument
28 int command_line_len = lstrlen(command_line);
30 wchar_t first_char = command_line[0];
31 wchar_t last_char = command_line[argument_len+1];
35 command_line[argument_len+1] = 0;
37 if (lstrcmpi(command_line+1, argument) == 0) {
39 command_line[argument_len+1] = last_char;
43 command_line[argument_len+1] = last_char;
46 ++command_line;
[all...]
/external/chromium_org/base/debug/
H A Ddebug_on_start_win.cc21 // Note: command_line is non-destructively modified.
22 bool DebugOnStart::FindArgument(wchar_t* command_line, const char* argument_c) { argument
28 int command_line_len = lstrlen(command_line);
30 wchar_t first_char = command_line[0];
31 wchar_t last_char = command_line[argument_len+1];
35 command_line[argument_len+1] = 0;
37 if (lstrcmpi(command_line+1, argument) == 0) {
39 command_line[argument_len+1] = last_char;
43 command_line[argument_len+1] = last_char;
46 ++command_line;
[all...]
/external/chromium_org/chrome/browser/android/
H A Dchrome_startup_flags.cc12 #include "base/command_line.h"
21 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
22 if (!command_line->HasSwitch(switch_string))
23 command_line->AppendSwitch(switch_string);
28 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
29 if (!command_line->HasSwitch(switch_string))
30 command_line->AppendSwitchASCII(switch_string, value);
/external/chromium_org/chrome_frame/
H A Dchrome_launcher_utils.cc8 #include "base/command_line.h"
26 // |command_line|.
27 bool CreateChromeLauncherCommandLine(scoped_ptr<CommandLine>* command_line) { argument
28 DCHECK(command_line);
38 command_line->reset(new CommandLine(chrome_launcher));
58 scoped_ptr<CommandLine>* command_line) {
59 DCHECK(command_line);
62 if (CreateChromeLauncherCommandLine(command_line)) {
63 (*command_line)->AppendArg(kUpdateCommandFlag);
64 (*command_line)
57 CreateUpdateCommandLine(const std::wstring& update_command, scoped_ptr<CommandLine>* command_line) argument
71 CreateLaunchCommandLine(scoped_ptr<CommandLine>* command_line) argument
[all...]
/external/chromium_org/chrome/test/security_tests/
H A Dsandbox_browsertest_win.cc5 #include "base/command_line.h"
15 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
16 command_line->AppendSwitchASCII(switches::kTestSandbox,
/external/chromium_org/tools/android/common/
H A Ddaemon.h12 bool HasHelpSwitch(const CommandLine& command_line);
14 bool HasNoSpawnDaemonSwitch(const CommandLine& command_line);
/external/chromium/chrome/browser/prerender/
H A Dprerender_field_trial.h15 void ConfigurePrefetchAndPrerender(const CommandLine& command_line);

Completed in 514 milliseconds

1234567891011>>