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_org/chrome/browser/first_run/
upgrade_util.cc 7 #include "base/command_line.h"
12 CommandLine* command_line; member in namespace:__anon8600
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"
32 virtual void SetUpCommandLine(CommandLine* command_line) {
33 command_line->AppendSwitchASCII(switches::kTryChromeAgain, "10001");
  /external/e2fsprogs/ext2ed/
ext2ed.h 254 extern void help (char *command_line);
255 extern void set (char *command_line);
256 extern void set_device (char *command_line);
257 extern void set_offset (char *command_line);
258 extern void set_type (char *command_line);
259 extern void show (char *command_line);
260 extern void pgup (char *command_line);
261 extern void pgdn (char *command_line);
262 extern void redraw (char *command_line);
263 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(base::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/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/ui/native_theme/
native_theme_switches.cc 5 #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/tools/memory_inspector/
memory_inspector_cli 10 from memory_inspector.frontends import command_line namespace
14 sys.exit(command_line.main())
  /external/chromium_org/chrome/browser/extensions/api/debugger/
debugger_extension_apitest.cc 5 #include "base/command_line.h"
12 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
13 ExtensionApiTest::SetUpCommandLine(command_line);
14 command_line->AppendSwitch(switches::kSilentDebuggerExtensionAPI);
15 command_line->AppendSwitch(extensions::switches::kExtensionsOnChromeURLs);
  /external/chromium_org/chrome/test/base/
test_launcher_utils.cc 7 #include "base/command_line.h"
23 void PrepareBrowserCommandLineForTests(CommandLine* command_line) {
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->AppendSwitchASCII(switches::kLoggingLevel, "0"); // inf
    [all...]
  /external/chromium_org/content/common/
content_switches_internal.cc 7 #include "base/command_line.h"
17 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
20 if (command_line.HasSwitch(switches::kDisablePinch))
28 return command_line.HasSwitch(switches::kEnableViewport) ||
29 command_line.HasSwitch(switches::kEnablePinch);
  /external/chromium_org/ui/compositor/
compositor_switches.cc 7 #include "base/command_line.h"
31 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
33 return command_line.HasSwitch(switches::kUIEnableImplSidePainting);
37 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
39 return command_line.HasSwitch(switches::kUIEnableZeroCopy);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
guest_mode_options_ui_browsertest.cc 5 #include "base/command_line.h"
20 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
21 command_line->AppendSwitch(chromeos::switches::kGuestSession);
22 command_line->AppendSwitchASCII(chromeos::switches::kLoginUser,
24 command_line->AppendSwitchASCII(chromeos::switches::kLoginProfile,
26 command_line->AppendSwitch(switches::kIncognito);
  /external/chromium_org/content/child/
runtime_features.cc 7 #include "base/command_line.h"
61 const CommandLine& command_line) {
62 if (command_line.HasSwitch(switches::kEnableExperimentalWebPlatformFeatures))
67 if (command_line.HasSwitch(switches::kDisableDatabases))
70 if (command_line.HasSwitch(switches::kDisableApplicationCache))
73 if (command_line.HasSwitch(switches::kDisableDesktopNotifications))
76 if (command_line.HasSwitch(switches::kDisableNavigatorContentUtils))
79 if (command_line.HasSwitch(switches::kDisableLocalStorage))
82 if (command_line.HasSwitch(switches::kDisableSessionStorage))
85 if (command_line.HasSwitch(switches::kDisableMediaSource)
    [all...]
runtime_features.h 15 const base::CommandLine& command_line);
  /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/tools/android/common/
daemon.h 14 bool HasHelpSwitch(const base::CommandLine& command_line);
16 bool HasNoSpawnDaemonSwitch(const base::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/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/app_mode/
app_mode_utils.cc 8 #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/base/test/
multiprocess_test.cc 8 #include "base/command_line.h"
17 CommandLine command_line(base_command_line);
21 if (!command_line.HasSwitch(switches::kTestChildProcess))
22 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname);
25 LaunchProcess(command_line, options, &handle);
54 CommandLine command_line = GetMultiProcessTestChildBaseCommandLine(); local
55 command_line.AppendSwitchASCII(switches::kTestChildProcess, procname);
56 return command_line;
  /external/chromium_org/net/tools/dump_cache/
dump_cache.cc 12 #include "base/command_line.h"
80 int LaunchSlave(CommandLine command_line,
83 bool do_upgrade = command_line.HasSwitch(kUpgrade);
84 bool do_convert_to_text = command_line.HasSwitch(kDumpToFiles);
89 command_line.SetProgram(program);
93 command_line.AppendSwitch(kSlave);
95 command_line.AppendSwitchNative(kPipe, pipe_number);
96 if (!base::LaunchProcess(command_line, base::LaunchOptions(), NULL)) {
98 command_line.GetProgram().value().c_str());
115 const base::CommandLine& command_line local
    [all...]
  /external/chromium_org/chrome/browser/media/
chrome_webrtc_audio_quality_browsertest.cc 7 #include "base/command_line.h"
93 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
96 EXPECT_FALSE(command_line->HasSwitch(
98 EXPECT_FALSE(command_line->HasSwitch(
103 command_line->AppendSwitch(switches::kDisableAudioTrackProcessing);
138 CommandLine command_line(CommandLine::NO_PROGRAM);
164 command_line.SetProgram(
166 command_line.AppendArg("/FILE");
167 command_line.AppendArgPath(output_file);
168 command_line.AppendArg("/DURATION")
    [all...]
  /external/chromium_org/chrome/browser/android/
chrome_startup_flags.cc 13 #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);
  /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, kAddSentinels);
222 EXPECT_TRUE(command_line.HasSwitch("foo"));
223 EXPECT_TRUE(command_line.HasSwitch(kSwitch1));
224 EXPECT_TRUE(command_line.HasSwitch(switches::kFlagSwitchesBegin));
225 EXPECT_TRUE(command_line.HasSwitch(switches::kFlagSwitchesEnd));
239 CommandLine command_line(CommandLine::NO_PROGRAM)
    [all...]

Completed in 1076 milliseconds

1 2 3 4 5 6 7 8 91011>>