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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/first_run/
upgrade_util.cc 7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon4606
19 command_line = new_command_line;
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
29 delete command_line;
30 command_line = NULL;
first_run_browser_process.cc 7 #include "base/command_line.h"
9 FirstRunBrowserProcess::FirstRunBrowserProcess(const CommandLine& command_line)
10 : BrowserProcessImpl(command_line) {
  /external/chromium_org/chrome/browser/first_run/
upgrade_util.cc 7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon7524
19 command_line = new_command_line;
23 if (command_line) {
24 if (!RelaunchChromeBrowser(*command_line)) {
29 delete command_line;
30 command_line = NULL;
upgrade_util_mac.cc 5 #include "base/command_line.h"
10 bool RelaunchChromeBrowser(const CommandLine& command_line) {
11 return mac_relauncher::RelaunchApp(command_line.argv());
try_chrome_dialog_view_browsertest.cc 5 #include "base/command_line.h"
29 virtual void SetUpCommandLine(CommandLine* command_line) {
30 command_line->AppendSwitchASCII(switches::kTryChromeAgain, "10001");
upgrade_util_win.h 22 bool DoUpgradeTasks(const CommandLine& command_line);
upgrade_util.h 18 bool RelaunchChromeBrowser(const CommandLine& command_line);
24 bool RelaunchChromeWithModeSwitch(const CommandLine& command_line);
  /external/chromium/chrome/browser/extensions/
extension_devtools_browsertest.cc 7 #include "base/command_line.h"
10 void ExtensionDevToolsBrowserTest::SetUpCommandLine(CommandLine* command_line) {
11 ExtensionBrowserTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExtensionTimelineApi);
extension_sidebar_apitest.cc 5 #include "base/command_line.h"
11 void SetUpCommandLine(CommandLine* command_line) {
12 ExtensionApiTest::SetUpCommandLine(command_line);
13 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
  /external/e2fsprogs/ext2ed/
ext2ed.h 258 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/
command_line_private_apitest.cc 5 #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/
debugger_extension_apitest.cc 5 #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/
terminal_private_apitest.cc 5 #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/chrome/test/base/
test_launcher_utils.cc 7 #include "base/command_line.h"
22 void PrepareBrowserCommandLineForTests(CommandLine* command_line) {
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->AppendSwitchASCII(switches::kLoggingLevel, "0"); // inf
    [all...]
  /external/chromium_org/content/child/
runtime_features.cc 7 #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.HasSwitch(switches::kDisableWebKitMediaSource)
    [all...]
runtime_features.h 13 const CommandLine& command_line);
  /external/chromium/chrome/browser/diagnostics/
diagnostics_main.h 13 int DiagnosticsMain(const CommandLine& command_line);
  /external/chromium/chrome/browser/prerender/
prerender_field_trial.h 15 void ConfigurePrefetchAndPrerender(const CommandLine& command_line);
  /external/chromium/base/debug/
debug_on_start_win.cc 21 // Note: command_line is non-destructively modified.
22 bool DebugOnStart::FindArgument(wchar_t* command_line, const char* argument_c) {
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/
debug_on_start_win.cc 21 // Note: command_line is non-destructively modified.
22 bool DebugOnStart::FindArgument(wchar_t* command_line, const char* argument_c) {
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/
chrome_startup_flags.cc 12 #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/
chrome_launcher_utils.cc 8 #include "base/command_line.h"
26 // |command_line|.
27 bool CreateChromeLauncherCommandLine(scoped_ptr<CommandLine>* command_line) {
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)->AppendArg(WideToASCII(update_command))
    [all...]
  /external/chromium_org/build/android/pylib/utils/
repo_utils.py 14 command_line = ['git', 'log', '-1', '--pretty=format:%H']
15 output = cmd_helper.GetCmdOutput(command_line, cwd=in_directory)
  /external/chromium_org/chrome/browser/chromeos/login/
chrome_restart_request.h 20 CommandLine* command_line);
23 void RestartChrome(const std::string& command_line);
  /external/chromium_org/chrome/test/security_tests/
sandbox_browsertest_win.cc 5 #include "base/command_line.h"
15 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
16 command_line->AppendSwitchASCII(switches::kTestSandbox,

Completed in 781 milliseconds

1 2 3 4 5 6 7 8 91011>>