HomeSort by relevance Sort by last modified time
    Searched defs:command_line (Results 176 - 200 of 317) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/tools/telemetry/telemetry/
benchmark.py 14 from telemetry.core import command_line namespace
35 class Benchmark(command_line.Command):
test_runner.py 20 from telemetry.core import command_line namespace
39 class Help(command_line.OptparseCommand):
64 class List(command_line.OptparseCommand):
106 class Run(command_line.OptparseCommand):
200 if not issubclass(cls, command_line.Command):
  /external/chromium_org/tools/telemetry/telemetry/unittest/
run_tests.py 11 from telemetry.core import command_line namespace
114 class RunTestsCommand(command_line.OptparseCommand):
  /external/chromium_org/tools/telemetry/telemetry/util/
find_dependencies.py 15 from telemetry.core import command_line namespace
226 class FindDependenciesCommand(command_line.OptparseCommand):
  /external/chromium_org/ui/gl/
gl_implementation_win.cc 10 #include "base/command_line.h"
165 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
167 command_line->GetSwitchValueASCII(switches::kUseGL) == "swiftshader";
169 if (!command_line->HasSwitch(switches::kSwiftShaderPath))
172 command_line->GetSwitchValuePath(switches::kSwiftShaderPath);
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_manager_factory_chromeos.cc 8 #include "base/command_line.h"
120 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local
150 command_line->HasSwitch(chromeos::switches::kLoginUser);
  /external/chromium_org/chrome/browser/extensions/
crx_installer_browsertest.cc 259 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
260 CommandLine old_command_line = *command_line;
261 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
  /external/chromium_org/chrome/browser/
jumplist_win.cc 9 #include "base/command_line.h"
49 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
50 shell_link->GetCommandLine()->CopySwitchesFrom(command_line,
  /external/chromium_org/chrome/browser/metrics/
chrome_browser_main_extra_parts_metrics.cc 10 #include "base/command_line.h"
192 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
194 command_line.HasSwitch(switches::kTouchEvents) ?
195 command_line.GetSwitchValueASCII(switches::kTouchEvents) :
  /external/chromium_org/chrome/browser/password_manager/
chrome_password_manager_client.cc 8 #include "base/command_line.h"
504 CommandLine* command_line = CommandLine::ForCurrentProcess();
505 if (command_line->HasSwitch(switches::kDisableSavePasswordBubble))
508 if (command_line->HasSwitch(switches::kEnableSavePasswordBubble))
519 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
520 if (command_line->HasSwitch(
524 if (command_line->HasSwitch(
538 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
539 if (command_line->HasSwitch(
544 if (command_line->HasSwitch
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
cloud_policy_browsertest.cc 6 #include "base/command_line.h"
212 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable
213 command_line->AppendSwitchASCII(switches::kDeviceManagementUrl, url);
  /external/chromium_org/chrome/browser/ui/views/app_list/win/
app_list_service_win.cc 10 #include "base/command_line.h"
109 CommandLine command_line(chrome_exe);
110 command_line.CopySwitchesFrom(*current, kSwitchesToCopy,
112 command_line.AppendSwitch(switches::kShowAppList);
113 return command_line;
121 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
122 if (command_line->HasSwitch(switches::kUserDataDir)) {
124 command_line->GetSwitchValuePath(switches::kUserDataDir).AppendASCII(
  /external/chromium_org/chrome/browser/ui/webui/help/
help_handler.cc 12 #include "base/command_line.h"
267 CommandLine::StringType command_line = local
269 localized_strings->SetString("commandLineInfo", command_line);
  /external/chromium_org/chrome/browser/ui/webui/options/
language_options_handler_common.cc 14 #include "base/command_line.h"
121 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
123 command_line.HasSwitch(switches::kEnableSpellingAutoCorrect);
  /external/chromium_org/chrome/browser/web_applications/
web_app_win.cc 9 #include "base/command_line.h"
333 CommandLine command_line = local
343 command_line.SetProgram(chrome_exe);
345 command_line.GetCommandLineString(), shortcut_info.title, hwnd);
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 12 #include "base/command_line.h"
258 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
264 if (command_line.HasSwitch(switches::kEnableShowModalDialog))
267 if (command_line.HasSwitch(switches::kJavaScriptHarmony)) {
295 if (!command_line.HasSwitch(switches::kSingleProcess))
chrome_render_view_observer.cc 9 #include "base/command_line.h"
170 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
171 if (!command_line.HasSwitch(switches::kDisableClientSidePhishingDetection))
  /external/chromium_org/chrome/renderer/net/
net_error_helper.cc 9 #include "base/command_line.h"
77 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
79 command_line->HasSwitch(switches::kEnableOfflineAutoReload);
81 command_line->HasSwitch(switches::kEnableOfflineAutoReloadVisibleOnly);
180 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
182 command_line->HasSwitch(switches::kEnableOfflineLoadStaleCache);
216 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
218 command_line->HasSwitch(switches::kEnableOfflineLoadStaleCache);
  /external/chromium_org/chrome/test/base/
in_process_browser_test.cc 10 #include "base/command_line.h"
157 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
163 command_line->AppendSwitch(switches::kDisableOfflineAutoReload);
166 SetUpCommandLine(command_line);
168 PrepareTestCommandLine(command_line);
181 base::FilePath log_dir = logging::GetSessionLogFile(*command_line).DirName();
220 void InProcessBrowserTest::PrepareTestCommandLine(CommandLine* command_line) {
222 test_launcher_utils::PrepareBrowserCommandLineForTests(command_line);
225 command_line->AppendSwitchASCII(switches::kTestType, kBrowserTestType);
228 if (command_line->HasSwitch(switches::kAshBrowserTests))
263 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
    [all...]
  /external/chromium_org/chromeos/system/
statistics_provider.cc 8 #include "base/command_line.h"
263 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
264 if (command_line->HasSwitch(switches::kAppOemManifestFile)) {
266 command_line->GetSwitchValuePath(switches::kAppOemManifestFile));
  /external/chromium_org/components/copresence/rpc/
rpc_handler.cc 10 #include "base/command_line.h"
468 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
470 command_line->HasSwitch(switches::kCopresenceServer) ?
471 command_line->GetSwitchValueASCII(switches::kCopresenceServer) :
479 command_line->GetSwitchValueASCII(switches::kCopresenceTracingToken),
  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_params.cc 9 #include "base/command_line.h"
242 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
244 if (!command_line.HasSwitch(switches::kDisableDataReductionProxyDev)) {
245 origin = command_line.GetSwitchValueASCII(
249 origin = command_line.GetSwitchValueASCII(switches::kDataReductionProxy);
251 command_line.GetSwitchValueASCII(switches::kDataReductionProxyFallback);
253 command_line.GetSwitchValueASCII(switches::kDataReductionSSLProxy);
255 command_line.GetSwitchValueASCII(switches::kDataReductionProxyAlt);
256 std::string alt_fallback_origin = command_line.GetSwitchValueASCII(
272 std::string probe_url = command_line.GetSwitchValueASCII
383 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
395 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
    [all...]
  /external/chromium_org/components/dom_distiller/standalone/
content_extractor.cc 7 #include "base/command_line.h"
170 const CommandLine& command_line) {
172 if (command_line.HasSwitch(kUrlSwitch)) {
174 std::string url_string = command_line.GetSwitchValueASCII(kUrlSwitch);
179 } else if (command_line.HasSwitch(kUrlsSwitch)) {
180 std::string urls_string = command_line.GetSwitchValueASCII(kUrlsSwitch);
252 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
253 requests_ = ContentExtractionRequest::CreateForCommandLine(command_line);
  /external/chromium_org/components/password_manager/core/browser/
password_manager.cc 7 #include "base/command_line.h"
61 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
62 if (command_line->HasSwitch(switches::kEnableDropSyncCredential))
65 if (command_line->HasSwitch(switches::kDisableDropSyncCredential))
  /external/chromium_org/content/app/
content_main_runner.cc 11 #include "base/command_line.h"
196 static base::ProcessId GetBrowserPid(const base::CommandLine& command_line) {
198 if (command_line.HasSwitch(switches::kProcessChannelID)) {
200 command_line.GetSwitchValueASCII(switches::kProcessChannelID);
211 static void InitializeStatsTable(const base::CommandLine& command_line) {
217 if (command_line.HasSwitch(switches::kEnableStatsTable)) {
235 static_cast<unsigned int>(GetBrowserPid(command_line)));
328 const base::CommandLine& command_line = local
331 command_line.GetSwitchValueASCII(switches::kProcessType);
337 InitializeStatsTable(command_line);
615 const base::CommandLine& command_line = variable
684 SetupCRT(command_line); variable
724 InitializeStatsTable(command_line); variable
755 const base::CommandLine& command_line = variable
780 const base::CommandLine& command_line = variable
    [all...]

Completed in 2022 milliseconds

1 2 3 4 5 6 78 91011>>