Searched defs:command_line (Results 401 - 425 of 444) sorted by relevance

<<1112131415161718

/external/chromium_org/content/browser/
H A Dchild_process_security_policy_impl.cc7 #include "base/command_line.h"
244 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
245 if (!command_line.HasSwitch(switches::kEnableStrictSiteIsolation))
H A Dplugin_service_impl.cc8 #include "base/command_line.h"
181 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
183 command_line->GetSwitchValuePath(switches::kLoadPlugin);
186 path = command_line->GetSwitchValuePath(switches::kExtraPluginDir);
190 if (command_line->HasSwitch(switches::kDisablePluginsDiscovery))
/external/chromium_org/content/browser/gpu/
H A Dgpu_data_manager_impl_private.cc9 #include "base/command_line.h"
116 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
154 command_line.HasSwitch(switches::kDisableAccelerated2dCanvas),
155 command_line.HasSwitch(switches::kDisableGpu),
156 command_line.HasSwitch(switches::kDisableExperimentalWebGL), };
240 CommandLine* command_line,
301 !command_line->HasSwitch(switches::kDefaultTileWidth) &&
302 !command_line->HasSwitch(switches::kDefaultTileHeight)) {
305 command_line->AppendSwitchASCII(
307 command_line
239 ApplyAndroidWorkarounds(const gpu::GPUInfo& gpu_info, CommandLine* command_line, std::set<int>* workarounds) argument
401 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
555 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
942 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
[all...]
H A Dgpu_process_host.cc12 #include "base/command_line.h"
511 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
512 command_line->AppendSwitch(switches::kDisableGpuWatchdog);
516 gpu_data_manager->AppendGpuCommandLine(command_line);
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_unittest.cc7 #include "base/command_line.h"
459 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
460 command_line->AppendSwitch(switches::kValidateInputEventStream);
H A Drender_message_filter.cc11 #include "base/command_line.h"
984 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
985 result = command_line.HasSwitch(switches::kEnablePreparsedJsCaching);
H A Drender_process_host_impl.cc22 #include "base/command_line.h"
965 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
966 if (command_line->HasSwitch(switches::kDisableKillAfterBadIPC))
1013 static void AppendCompositorCommandLineFlags(CommandLine* command_line) { argument
1015 command_line->AppendSwitch(cc::switches::kEnablePinchVirtualViewport);
1018 command_line->AppendSwitch(switches::kEnableThreadedCompositing);
1021 command_line->AppendSwitch(switches::kEnableDelegatedRenderer);
1024 command_line->AppendSwitch(switches::kEnableImplSidePainting);
1027 command_line->AppendSwitch(switches::kEnableGpuRasterization);
1030 command_line
1739 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
1776 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
1833 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
[all...]
H A Drender_view_host_impl.cc13 #include "base/command_line.h"
342 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
345 !command_line.HasSwitch(switches::kDisableJavaScript);
347 !command_line.HasSwitch(switches::kDisableWebSecurity);
349 !command_line.HasSwitch(switches::kDisablePlugins);
351 !command_line.HasSwitch(switches::kDisableJava);
354 !command_line.HasSwitch(switches::kDisableRemoteFonts);
356 !command_line.HasSwitch(switches::kDisableXSLT);
358 !command_line.HasSwitch(switches::kDisableXSSAuditor);
360 !command_line
[all...]
/external/chromium_org/content/common/gpu/
H A Dgpu_channel.cc15 #include "base/command_line.h"
399 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
400 log_messages_ = command_line->HasSwitch(switches::kLogPluginMessages);
/external/chromium_org/content/renderer/gpu/
H A Drender_widget_compositor.cc14 #include "base/command_line.h"
65 const CommandLine& command_line,
70 std::string string_value = command_line.GetSwitchValueASCII(switch_string);
64 GetSwitchValueAsInt( const CommandLine& command_line, const std::string& switch_string, int min_value, int max_value, int* result) argument
/external/chromium_org/extensions/renderer/
H A Ddispatcher.cc8 #include "base/command_line.h"
181 const CommandLine& command_line = *(CommandLine::ForCurrentProcess()); local
183 command_line.HasSwitch(extensions::switches::kExtensionProcess) ||
184 command_line.HasSwitch(::switches::kSingleProcess);
/external/chromium_org/tools/traceline/traceline/
H A Dmain.cc1227 std::string command_line; local
/external/protobuf/gtest/src/
H A Dgtest-death-test.cc651 String command_line = String::Format("%s %s \"%s\"", local
673 const_cast<char*>(command_line.c_str()),
/external/chromium_org/ash/display/
H A Ddisplay_manager.cc18 #include "base/command_line.h"
105 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
106 if (command_line->HasSwitch(switches::kAshUseFirstDisplayAsInternal))
230 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
231 if (!command_line->HasSwitch(switches::kAshHostWindowBounds))
234 command_line->GetSwitchValueASCII(switches::kAshHostWindowBounds);
243 command_line->HasSwitch(switches::kAshEnableSoftwareMirroring)) {
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfile_manager_browsertest.cc535 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
596 void FileManagerBrowserTestBase::SetUpCommandLine(CommandLine* command_line) { argument
598 command_line->AppendSwitch(chromeos::switches::kGuestSession);
599 command_line->AppendSwitchNative(chromeos::switches::kLoginUser, "");
600 command_line->AppendSwitch(switches::kIncognito);
603 command_line->AppendSwitch(switches::kIncognito);
605 ExtensionApiTest::SetUpCommandLine(command_line);
1112 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
1113 FileManagerBrowserTestBase::SetUpCommandLine(command_line);
1117 command_line
[all...]
/external/chromium_org/chrome/browser/chromeos/login/users/
H A Duser_manager_impl.cc14 #include "base/command_line.h"
1119 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
1121 command_line->HasSwitch(switches::kLoginUser) &&
1122 !command_line->HasSwitch(switches::kLoginPassword);
1511 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
1512 command_line->AppendSwitch(::switches::kForceAppMode);
1513 command_line->AppendSwitchASCII(::switches::kAppId, kiosk_app_id);
1517 command_line->AppendSwitch(
1527 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
1528 command_line
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_service.cc11 #include "base/command_line.h"
269 const CommandLine* command_line,
298 *command_line, profile))
325 if (command_line->HasSwitch(switches::kExtensionsUpdateFrequency)) {
326 base::StringToInt(command_line->GetSwitchValueASCII(
268 ExtensionService(Profile* profile, const CommandLine* command_line, const base::FilePath& install_directory, extensions::ExtensionPrefs* extension_prefs, extensions::Blacklist* blacklist, bool autoupdate_enabled, bool extensions_enabled, extensions::OneShotEvent* ready) argument
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_browsertest.cc12 #include "base/command_line.h"
2507 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
2509 command_line->AppendSwitch(switches::kCreateBrowserOnStartupForTests);
2510 PolicyTest::SetUpCommandLine(command_line);
2521 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable
2522 CommandLine::StringVector argv = command_line->argv();
2525 command_line->InitFromArgv(argv);
2527 command_line->argv().begin()));
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_controller_unittest.cc10 #include "base/command_line.h"
2532 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
2535 command_line->GetSwitchValueASCII(switches::kWalletServiceUseSandbox));
2537 command_line->AppendSwitchASCII(switches::kWalletServiceUseSandbox, "1");
2547 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
2550 command_line->GetSwitchValueASCII(switches::kWalletServiceUseSandbox));
2552 command_line->AppendSwitchASCII(switches::kWalletServiceUseSandbox, "0");
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_browsertest.cc8 #include "base/command_line.h"
1328 CommandLine command_line(CommandLine::NO_PROGRAM);
1329 command_line.AppendSwitchASCII(switches::kAppId, extension_app->id());
1333 StartupBrowserCreatorImpl launch(base::FilePath(), command_line, first_run); local
2180 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
2181 command_line->AppendSwitch(switches::kKioskMode);
2205 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
2211 command_line->AppendSwitchPath(switches::kUserDataDir, tmp_profile);
2230 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
2231 command_line
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dbrowser_options_handler.cc14 #include "base/command_line.h"
802 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
803 if (!command_line.HasSwitch(switches::kUserDataDir)) {
/external/chromium_org/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_handler.cc15 #include "base/command_line.h"
1404 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
1406 command_line->HasSwitch(switches::kEnablePrintPreviewRegisterPromos)) {
1584 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
1592 command_line->HasSwitch(switches::kEnablePrintPreviewRegisterPromos));
/external/chromium_org/chrome/installer/util/
H A Dshell_util.cc19 #include "base/command_line.h"
720 CommandLine command_line = CommandLine::FromString(uninstall_string); local
721 exe_path = command_line.GetProgram();
1124 CommandLine command_line(CommandLine::NO_PROGRAM);
1137 command_line = CommandLine::FromString(value);
1138 if (!ShortNameFromPath(command_line.GetProgram(), &short_path))
1708 CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
1709 if (command_line.HasSwitch(
1711 suffix = command_line.GetSwitchValueNative(
2017 CommandLine& command_line local
[all...]
/external/chromium_org/components/breakpad/app/
H A Dbreakpad_linux.cc26 #include "base/command_line.h"
206 void SetClientIdFromCommandLine(const CommandLine& command_line) { argument
209 command_line.GetSwitchValueASCII(switches::kEnableCrashReporter);
1596 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
1597 if (command_line->HasSwitch(switches::kEnableCrashReporter)) {
/external/chromium_org/content/browser/download/
H A Ddownload_item_impl.cc30 #include "base/command_line.h"
1683 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
1684 if (!command_line.HasSwitch(switches::kEnableDownloadResumption))

Completed in 1827 milliseconds

<<1112131415161718