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

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/profiles/
profile_window.cc 7 #include "base/command_line.h"
67 CommandLine command_line(CommandLine::NO_PROGRAM);
70 browser_creator.LaunchBrowser(command_line, profile, base::FilePath(),
  /external/chromium_org/chrome/installer/mini_installer/
configuration.cc 47 // lines. |command_line| is shared with this instance in the sense that this
50 bool Configuration::InitializeFromCommandLine(const wchar_t* command_line) {
53 command_line_ = command_line;
configuration_test.cc 14 explicit TestConfiguration(const wchar_t* command_line) : Configuration() {
15 Initialize(command_line);
18 void Initialize(const wchar_t* command_line) {
19 ASSERT_TRUE(InitializeFromCommandLine(command_line));
62 TestConfiguration(kCommandLines[i]).command_line());
  /external/chromium_org/content/browser/device_orientation/
device_orientation_browsertest.cc 5 #include "base/command_line.h"
49 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
50 EXPECT_TRUE(!command_line->HasSwitch(switches::kDisableDeviceOrientation));
  /external/chromium_org/content/browser/speech/
speech_recognition_browsertest.cc 5 #include "base/command_line.h"
31 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
32 EXPECT_TRUE(!command_line->HasSwitch(switches::kDisableSpeechInput));
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility.cc 7 #include "base/command_line.h"
28 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
29 if (command_line.HasSwitch(switches::kEnableAccessibilityLogging))
  /external/chromium_org/content/shell/common/
shell_content_client.cc 7 #include "base/command_line.h"
26 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
27 if (command_line->HasSwitch(switches::kUseMobileUserAgent))
  /external/chromium_org/gpu/config/
gpu_util.cc 9 #include "base/command_line.h"
67 void ApplyGpuDriverBugWorkarounds(CommandLine* command_line) {
77 command_line->AppendSwitchASCII(switches::kGpuDriverBugWorkarounds,
  /external/chromium_org/remoting/host/
desktop_process_main.cc 10 #include "base/command_line.h"
26 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
28 command_line->GetSwitchValueASCII(kDaemonPipeSwitchName);
  /external/chromium_org/third_party/libjingle/overrides/
initialize_module.cc 6 #include "base/command_line.h"
46 bool InitializeModule(const CommandLine& command_line,
68 CommandLine::ForCurrentProcess()->AppendArguments(command_line, true);
  /external/chromium_org/chrome/browser/translate/
translate_prefs.cc 7 #include "base/command_line.h"
82 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
83 if (command_line->HasSwitch(switches::kEnableTranslateSettings)) {
94 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
95 if (command_line->HasSwitch(switches::kEnableTranslateSettings)) {
105 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
106 if (command_line->HasSwitch(switches::kEnableTranslateSettings)) {
171 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
172 if (command_line->HasSwitch(switches::kEnableTranslateSettings))
179 CommandLine* command_line = CommandLine::ForCurrentProcess() local
255 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
356 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
    [all...]
  /external/chromium/chrome/browser/
upgrade_detector.cc 9 #include "base/command_line.h"
107 CommandLine command_line(*CommandLine::ForCurrentProcess());
108 command_line.AppendSwitch(switches::kProductVersion);
110 if (!base::GetAppOutput(command_line, &reply)) {
162 CommandLine command_line(*CommandLine::ForCurrentProcess());
163 if (command_line.HasSwitch(switches::kDisableBackgroundNetworking))
  /external/chromium_org/apps/
app_load_service.cc 29 : command_line(CommandLine::NO_PROGRAM) {
53 const CommandLine& command_line,
64 action.command_line = command_line;
99 profile_, extension, &it->second.command_line,
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_process_launcher_win.cc 9 #include "base/command_line.h"
76 const CommandLine& command_line,
86 if (!command_line.GetProgram().IsAbsolute()) {
129 string16 command_line_string = command_line.GetCommandLineString();
145 << command_line.GetProgram().MaybeAsASCII();
157 << command_line.GetProgram().MaybeAsASCII();
  /external/chromium_org/cloud_print/service/win/
installer.cc 10 #include "base/command_line.h"
80 const CommandLine& command_line(*CommandLine::ForCurrentProcess());
82 if (command_line.HasSwitch(kInstallSwitch)) {
107 } else if (command_line.HasSwitch(kUninstallSwitch)) {
119 } else if (command_line.HasSwitch(kDeleteSwitch)) {
120 base::FilePath delete_path = command_line.GetSwitchValuePath(kDeleteSwitch);
  /external/chromium_org/content/browser/gpu/
gpu_memory_test.cc 6 #include "base/command_line.h"
77 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
78 command_line->AppendSwitch(switches::kEnableLogging);
79 command_line->AppendSwitch(switches::kForceCompositingMode);
80 command_line->AppendSwitchASCII(switches::kForceGpuMemAvailableMb,
84 if (command_line->HasSwitch(switches::kUseGpuInTests)) {
gpu_internals_ui.cc 11 #include "base/command_line.h"
204 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
217 command_line.HasSwitch(switches::kDisableAccelerated2dCanvas) ||
227 command_line.HasSwitch(switches::kDisableAcceleratedCompositing),
238 command_line.HasSwitch(switches::kDisableAcceleratedLayers),
247 command_line.HasSwitch(cc::switches::kDisableThreadedAnimation) ||
248 command_line.HasSwitch(switches::kDisableAcceleratedCompositing) ||
249 command_line.HasSwitch(switches::kDisableAcceleratedLayers),
256 command_line.HasSwitch(switches::kDisableExperimentalWebGL),
263 command_line.HasSwitch(switches::kDisableGLMultisampling)
    [all...]
  /external/chromium_org/content/renderer/
renderer_main.cc 6 #include "base/command_line.h"
55 static void HandleRendererErrorTestParameters(const CommandLine& command_line) {
56 if (command_line.HasSwitch(switches::kWaitForDebugger))
59 if (command_line.HasSwitch(switches::kRendererStartupDialog))
63 if (command_line.HasSwitch(switches::kRendererAssertTest)) {
118 const CommandLine& parsed_command_line = parameters.command_line;
  /external/chromium_org/remoting/host/setup/
start_host.cc 9 #include "base/command_line.h"
90 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
92 std::string host_name = command_line->GetSwitchValueASCII("name");
93 std::string host_pin = command_line->GetSwitchValueASCII("pin");
94 std::string auth_code = command_line->GetSwitchValueASCII("code");
95 std::string redirect_url = command_line->GetSwitchValueASCII("redirect-url");
  /external/e2fsprogs/ext2ed/
super_com.c 24 void type_ext2_super_block___show (char *command_line)
30 show (command_line);
119 void type_ext2_super_block___gocopy (char *command_line)
125 ptr=parse_word (command_line,buffer);
146 void type_ext2_super_block___setactivecopy (char *command_line)
  /external/chromium_org/chrome/browser/extensions/api/networking_private/
networking_private_apitest.cc 6 #include "base/command_line.h"
72 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
73 ExtensionApiTest::SetUpCommandLine(command_line);
75 command_line->AppendSwitchASCII(::switches::kWhitelistedExtensionID,
77 command_line->AppendSwitch(switches::kUseNewNetworkConfigurationHandlers);
82 command_line->GetSwitchValueNative(switches::kLoginUser);
85 command_line->AppendSwitchASCII(switches::kLoginProfile, sanitized_user);
87 command_line->AppendSwitch(::switches::kMultiProfiles);
205 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
206 ExtensionApiTest::SetUpCommandLine(command_line);
    [all...]
  /external/chromium/chrome/browser/prefs/
pref_service_unittest.cc 8 #include "base/command_line.h"
221 CommandLine command_line(CommandLine::NO_PROGRAM);
222 command_line.AppendSwitchASCII(switches::kProxyBypassList, "123");
223 command_line.AppendSwitchASCII(switches::kProxyServer, "789");
237 builder.WithCommandLine(&command_line);
249 builder.WithCommandLine(&command_line);
261 CommandLine command_line(CommandLine::NO_PROGRAM);
262 command_line.AppendSwitchASCII(switches::kProxyBypassList, "123");
263 command_line.AppendSwitchASCII(switches::kProxyServer, "789");
273 builder.WithCommandLine(&command_line);
    [all...]
  /external/chromium_org/cloud_print/virtual_driver/win/install/
setup.cc 12 #include "base/command_line.h"
92 CommandLine command_line(net_path);
93 command_line.AppendArg(command);
94 command_line.AppendArg("spooler");
95 command_line.AppendArg("/y");
100 LOG(INFO) << command_line.GetCommandLineString();
101 base::LaunchProcess(command_line, options, NULL);
130 CommandLine command_line(regsvr32_path);
131 command_line.AppendArg("/s");
133 command_line.AppendArg("/u")
508 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_system.cc 9 #include "base/command_line.h"
123 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
127 bool allow_noisy_errors = !command_line->HasSwitch(switches::kNoErrorDialogs);
138 !command_line->HasSwitch(chromeos::switches::kGuestSession);
171 if (command_line->HasSwitch(switches::kLoadComponentExtension)) {
172 CommandLine::StringType path_list = command_line->GetSwitchValueNative(
192 if (command_line->HasSwitch(switches::kLoadExtension)) {
193 CommandLine::StringType path_list = command_line->GetSwitchValueNative(
  /external/chromium_org/chrome_frame/ready_mode/internal/
registry_ready_mode_state.cc 40 std::wstring command_line; local
42 &command_line) == ERROR_SUCCESS) {
46 if (base::LaunchProcess(command_line, options, &launched_process)) {
61 scoped_ptr<CommandLine> command_line; local
62 if (chrome_launcher::CreateUpdateCommandLine(command_field, &command_line)) {
63 DCHECK(command_line != NULL);
66 base::LaunchProcess(*command_line, options, &launched_process);

Completed in 1644 milliseconds

<<11121314151617181920>>