Searched defs:command_line (Results 151 - 175 of 444) sorted by relevance

1234567891011>>

/external/chromium_org/components/translate/core/browser/
H A Dtranslate_script_unittest.cc8 #include "base/command_line.h"
107 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
108 command_line->AppendSwitchASCII(translate::switches::kTranslateScriptURL,
/external/chromium_org/components/variations/
H A Dvariations_seed_processor.cc9 #include "base/command_line.h"
91 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
95 command_line->HasSwitch(experiment.forcing_flag())) {
/external/chromium_org/content/browser/
H A Dbrowser_shutdown_profile_dumper.cc8 #include "base/command_line.h"
76 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
78 command_line.GetSwitchValuePath(switches::kTraceShutdownFile);
/external/chromium_org/content/browser/gpu/
H A Dcompositor_util.cc7 #include "base/command_line.h"
51 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
59 command_line.HasSwitch(switches::kDisableAccelerated2dCanvas) ||
78 command_line.HasSwitch(switches::kDisableExperimentalWebGL),
85 command_line.HasSwitch(switches::kDisableFlash3d),
93 command_line.HasSwitch(switches::kDisableFlashStage3d),
103 command_line.HasSwitch(switches::kDisableFlashStage3d),
112 command_line.HasSwitch(switches::kDisableAcceleratedVideoDecode),
122 command_line.HasSwitch(switches::kDisableWebRtcHWEncoding),
132 command_line
[all...]
/external/chromium_org/content/public/test/
H A Dbrowser_test_base.h55 virtual void SetUpCommandLine(base::CommandLine* command_line) {} argument
/external/chromium_org/content/renderer/
H A Drenderer_main.cc6 #include "base/command_line.h"
60 static void HandleRendererErrorTestParameters(const CommandLine& command_line) { argument
61 if (command_line.HasSwitch(switches::kWaitForDebugger))
64 if (command_line.HasSwitch(switches::kRendererStartupDialog))
68 if (command_line.HasSwitch(switches::kRendererAssertTest)) {
123 const CommandLine& parsed_command_line = parameters.command_line;
H A Drenderer_main_platform_delegate_win.cc7 #include "base/command_line.h"
79 const CommandLine& command_line = parameters_.command_line; local
82 if (command_line.HasSwitch(switches::kEnableVtune))
88 bool no_sandbox = command_line.HasSwitch(switches::kNoSandbox);
/external/chromium_org/content/shell/app/
H A Dwebkit_test_platform_support_win.cc12 #include "base/command_line.h"
64 CommandLine& command_line = *base::CommandLine::ForCurrentProcess(); local
65 command_line.AppendSwitchASCII(switches::kRegisterFontFiles,
/external/chromium_org/content/shell/browser/
H A Dshell_browser_main_parts.cc9 #include "base/command_line.h"
57 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
58 if (command_line->HasSwitch(switches::kContentBrowserTest))
60 const CommandLine::StringVector& args = command_line->GetArgs();
H A Dshell_url_request_context_getter.cc7 #include "base/command_line.h"
98 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
103 if (command_line.HasSwitch(switches::kDumpRenderTree))
122 if (command_line.HasSwitch(switches::kDumpRenderTree)) {
176 if (command_line.HasSwitch(switches::kTestingFixedHttpPort)) {
178 base::StringToInt(command_line.GetSwitchValueASCII(
182 if (command_line.HasSwitch(switches::kTestingFixedHttpsPort)) {
184 base::StringToInt(command_line.GetSwitchValueASCII(
188 if (command_line.HasSwitch(switches::kHostResolverRules)) {
192 command_line
[all...]
/external/chromium_org/content/test/ppapi/
H A Dppapi_test.cc7 #include "base/command_line.h"
42 void PPAPITestBase::SetUpCommandLine(base::CommandLine* command_line) { argument
44 command_line->AppendSwitch(switches::kEnableFileCookies);
48 command_line->AppendSwitch(switches::kEnablePepperTesting);
51 command_line->AppendSwitch(switches::kDisableSmoothScrolling);
100 void PPAPITest::SetUpCommandLine(base::CommandLine* command_line) { argument
101 PPAPITestBase::SetUpCommandLine(command_line);
113 command_line->AppendSwitchNative(switches::kRegisterPepperPlugins,
117 command_line->AppendSwitch(switches::kPpapiInProcess);
/external/chromium_org/extensions/common/
H A Dfeature_switch.cc7 #include "base/command_line.h"
110 FeatureSwitch::FeatureSwitch(const CommandLine* command_line, argument
113 Init(command_line, switch_name, default_value);
116 void FeatureSwitch::Init(const CommandLine* command_line, argument
119 command_line_ = command_line;
/external/chromium_org/remoting/host/
H A Dservice_urls.cc7 #include "base/command_line.h"
36 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
37 CHECK(command_line);
38 if (command_line->HasSwitch(kDirectoryBaseUrlSwitch)) {
39 directory_base_url_ = command_line->GetSwitchValueASCII(
42 if (command_line->HasSwitch(kXmppServerAddressSwitch)) {
43 xmpp_server_address_ = command_line->GetSwitchValueASCII(
46 if (command_line->HasSwitch(kXmppServerDisableTlsSwitch)) {
49 if (command_line->HasSwitch(kDirectoryBotJidSwitch)) {
50 directory_bot_jid_ = command_line
[all...]
/external/chromium_org/remoting/host/setup/
H A Dstart_host.cc9 #include "base/command_line.h"
90 const base::CommandLine* command_line = local
93 std::string host_name = command_line->GetSwitchValueASCII("name");
94 std::string host_pin = command_line->GetSwitchValueASCII("pin");
95 std::string auth_code = command_line->GetSwitchValueASCII("code");
96 std::string redirect_url = command_line->GetSwitchValueASCII("redirect-url");
/external/chromium_org/tools/telemetry/
H A Dcloud_storage12 from telemetry.core import command_line namespace
67 class Ls(command_line.Command):
113 class Mv(command_line.Command):
148 class Rm(command_line.Command):
163 class Upload(command_line.Command):
196 class CloudStorageCommand(command_line.SubcommandCommand):
/external/chromium_org/ui/gl/
H A Dgl_implementation_x11.cc7 #include "base/command_line.h"
68 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
70 if (command_line->HasSwitch(switches::kTestGLLib))
72 command_line->GetSwitchValueASCII(switches::kTestGLLib).c_str());
/external/chromium_org/win8/metro_driver/
H A Dchrome_url_launch_handler.cc14 #include "base/command_line.h"
111 CommandLine command_line = CommandLine::FromString(dummy_command_line); local
112 CommandLine::StringVector args = command_line.GetArgs();
/external/e2fsprogs/ext2ed/
H A Dgroup_com.c21 void type_ext2_group_desc___next (char *command_line) argument
27 ptr=parse_word (command_line,buffer);
37 void type_ext2_group_desc___prev (char *command_line) argument
43 ptr=parse_word (command_line,buffer);
53 void type_ext2_group_desc___entry (char *command_line) argument
59 ptr=parse_word (command_line,buffer);
79 void type_ext2_group_desc___gocopy (char *command_line) argument
85 ptr=parse_word (command_line,buffer);
107 void type_ext2_group_desc___show (char *command_line) argument
115 show (command_line);
134 type_ext2_group_desc___inode(char *command_line) argument
145 type_ext2_group_desc___blockbitmap(char *command_line) argument
159 type_ext2_group_desc___inodebitmap(char *command_line) argument
173 type_ext2_group_desc___setactivecopy(char *command_line) argument
[all...]
/external/chromium_org/android_webview/browser/net/
H A Daw_url_request_context_getter.cc16 #include "base/command_line.h"
54 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
55 if (command_line.HasSwitch(switches::kHostResolverRules)) {
63 command_line.GetSwitchValueASCII(switches::kHostResolverRules));
71 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
72 if (command_line.HasSwitch(switches::kTestingFixedHttpPort)) {
73 base::StringToInt(command_line.GetSwitchValueASCII(
77 if (command_line.HasSwitch(switches::kTestingFixedHttpsPort)) {
78 base::StringToInt(command_line.GetSwitchValueASCII(
/external/chromium_org/apps/shell/browser/
H A Dshell_content_browser_client.cc10 #include "base/command_line.h"
164 CommandLine* command_line, int child_process_id) {
166 command_line->GetSwitchValueASCII(switches::kProcessType);
171 command_line->AppendSwitch(extensions::switches::kExtensionProcess);
163 AppendExtraCommandLineSwitches( CommandLine* command_line, int child_process_id) argument
/external/chromium_org/chrome/browser/apps/
H A Dapp_url_redirector_browsertest.cc23 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
117 CommandLine* command_line) {
118 PlatformAppBrowserTest::SetUpCommandLine(command_line);
119 command_line->AppendSwitch(::switches::kDisablePopupBlocking);
120 command_line->AppendSwitchASCII(::switches::kPrerenderMode,
116 SetUpCommandLine( CommandLine* command_line) argument
/external/chromium_org/chrome/browser/
H A Dchrome_net_benchmarking_message_filter.cc9 #include "base/command_line.h"
143 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
144 result = command_line.HasSwitch(switches::kEnableNetBenchmarking);
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dvirtual_keyboard_browsertest.cc11 #include "base/command_line.h"
55 void VirtualKeyboardBrowserTest::SetUpCommandLine(CommandLine* command_line) { argument
56 command_line->AppendSwitch(keyboard::switches::kEnableVirtualKeyboard);
/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);
217 command_line->CopySwitchesFrom(base_command_line,
222 command_line->AppendArg(start_url.spec());
229 command_line->AppendSwitchASCII(it.key(), value);
232 std::string cmd_line_str = command_line->GetCommandLineString();
249 void ReLaunch(const std::string& command_line) { argument
253 base::SplitString(command_line, ' ', &argv);
269 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
286 ChromeRestartRequest(const std::string& command_line) argument
337 GetOffTheRecordCommandLine( const GURL& start_url, bool is_oobe_completed, const CommandLine& base_command_line, CommandLine* command_line) argument
364 RestartChrome(const std::string& command_line) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/login/enrollment/
H A Dauto_enrollment_controller.cc9 #include "base/command_line.h"
27 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
28 if (!command_line->HasSwitch(switch_name))
30 std::string value = command_line->GetSwitchValueASCII(switch_name);
60 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
62 if (!command_line->HasSwitch(switches::kEnterpriseEnableForcedReEnrollment))
65 std::string command_line_mode = command_line->GetSwitchValueASCII(
99 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
100 if (command_line->HasSwitch(chromeos::switches::kOobeSkipPostLogin) ||
101 (!command_line
[all...]

Completed in 609 milliseconds

1234567891011>>