| /external/chromium_org/content/shell/app/ |
| webkit_test_platform_support_win.cc | 12 #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/ |
| shell_content_browser_client.h | 47 virtual void AppendExtraCommandLineSwitches(base::CommandLine* command_line, 67 const base::CommandLine& command_line,
|
| /external/chromium_org/gpu/command_buffer/service/ |
| feature_info.h | 92 // Constructor with workarounds taken from |command_line| 93 FeatureInfo(const base::CommandLine& command_line); 129 void InitializeBasicState(const base::CommandLine& command_line);
|
| /external/chromium_org/tools/ipc_fuzzer/ |
| play_testcase.py | 91 command_line = ' '.join(['\'' + arg + '\'' for arg in chrome_command]) 92 print 'Executing: ' + command_line
|
| /external/lldb/scripts/Python/interface/ |
| SBCommandInterpreter.i | 115 HandleCommand (const char *command_line, lldb::SBCommandReturnObject &result, bool add_to_history = false);
|
| /external/chromium_org/chrome/browser/ |
| chrome_browser_main.cc | 13 #include "base/command_line.h" 209 void HandleTestParameters(const CommandLine& command_line) { 211 if (command_line.HasSwitch(switches::kBrowserAssertTest)) { 216 if (command_line.HasSwitch(switches::kBrowserCrashTest)) { 380 void RegisterComponentsForUpdate(const CommandLine& command_line) { 393 cus, command_line); 399 if (!command_line.HasSwitch(switches::kDisableCRLSets)) 420 const CommandLine& command_line, 426 if (command_line.HasSwitch(switches::kOriginalProcessStartTime)) { 428 command_line.GetSwitchValueASCII(switches::kOriginalProcessStartTime) 566 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local [all...] |
| process_singleton_browsertest.cc | 14 #include "base/command_line.h" 64 CommandLine command_line(program); 65 command_line.AppendSwitchPath(switches::kUserDataDir, user_data_dir_); 68 command_line.AppendSwitch(switches::kForceFirstRun); 70 command_line.AppendSwitch(switches::kNoFirstRun); 85 command_line.AppendSwitchNative(switch_name, i->second); 98 base::LaunchProcess(command_line, base::LaunchOptions(), &process_handle_);
|
| shell_integration.cc | 8 #include "base/command_line.h" 86 CommandLine* command_line) { 87 DCHECK(command_line); 100 command_line->AppendSwitchPath(switches::kUserDataDir, user_data_dir); 107 command_line->AppendSwitchPath(chromeos::switches::kLoginProfile, profile); 110 command_line->AppendSwitchPath(switches::kProfileDirectory,
|
| /external/chromium_org/chrome/browser/first_run/ |
| first_run_browsertest.cc | 7 #include "base/command_line.h" 104 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 105 InProcessBrowserTest::SetUpCommandLine(command_line); 106 command_line->AppendSwitch(switches::kForceFirstRun); 252 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 253 FirstRunMasterPrefsBrowserTestT::SetUpCommandLine(command_line); 254 command_line->AppendSwitchASCII(
|
| /external/chromium_org/components/precache/core/ |
| precache_fetcher.cc | 11 #include "base/command_line.h" 30 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 31 if (command_line.HasSwitch(switches::kPrecacheConfigSettingsURL)) { 33 command_line.GetSwitchValueASCII(switches::kPrecacheConfigSettingsURL)); 46 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 47 if (command_line.HasSwitch(switches::kPrecacheManifestURLPrefix)) { 48 return command_line.GetSwitchValueASCII(
|
| /external/chromium_org/content/browser/gpu/ |
| gpu_data_manager_impl.cc | 142 base::CommandLine* command_line) const { 144 private_->AppendRendererCommandLine(command_line); 148 base::CommandLine* command_line) const { 150 private_->AppendGpuCommandLine(command_line); 154 base::CommandLine* command_line) const { 156 private_->AppendPluginCommandLine(command_line);
|
| /external/chromium_org/gpu/config/ |
| gpu_driver_bug_list_unittest.cc | 5 #include "base/command_line.h" 131 base::CommandLine command_line(0, NULL); 132 command_line.AppendSwitch( 139 &workarounds, command_line); 145 base::CommandLine command_line(0, NULL); 146 command_line.AppendSwitch( 154 &workarounds, command_line);
|
| /external/chromium_org/tools/telemetry/ |
| cloud_storage | 12 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/chrome/browser/ui/views/app_list/win/ |
| app_list_service_win.cc | 10 #include "base/command_line.h" 104 CommandLine command_line(chrome_exe); 105 command_line.CopySwitchesFrom(*current, kSwitchesToCopy, 107 command_line.AppendSwitch(switches::kShowAppList); 108 return command_line; 116 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 117 if (command_line->HasSwitch(switches::kUserDataDir)) { 119 command_line->GetSwitchValuePath(switches::kUserDataDir).AppendASCII(
|
| /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/nacl/ |
| nacl_browsertest.cc | 14 #include "base/command_line.h" 233 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 234 NaClBrowserTestPnacl::SetUpCommandLine(command_line); 236 command_line->AppendSwitch(switches::kEnableNaClDebug); 240 command_line->AppendSwitch(switches::kNoSandbox); 298 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 299 NaClBrowserTestPnaclDebug::SetUpCommandLine(command_line); 300 command_line->AppendSwitchASCII(switches::kNaClDebugMask,
|
| /external/chromium_org/cloud_print/service/win/ |
| service_controller.cc | 11 #include "base/command_line.h" 167 CommandLine command_line(service_path); 168 command_line.AppendSwitch(run_switch); 170 command_line.AppendSwitchPath(switches::kUserDataDir, user_data_dir); 172 command_line.AppendSwitch(switches::kEnableLogging); 173 command_line.AppendSwitchASCII(switches::kV, "1"); 176 CopyChromeSwitchesFromCurrentProcess(&command_line); 203 SERVICE_ERROR_NORMAL, command_line.GetCommandLineString().c_str(),
|
| /external/chromium_org/media/audio/alsa/ |
| audio_manager_alsa.cc | 7 #include "base/command_line.h" 53 CommandLine command_line(CommandLine::NO_PROGRAM); 56 command_line.SetProgram(base::FilePath("gnome-volume-control")); 60 command_line.SetProgram(base::FilePath("kmix")); 63 command_line.SetProgram(base::FilePath("gnome-control-center")); 64 command_line.AppendArg("sound"); 65 command_line.AppendArg("input"); 72 base::LaunchProcess(command_line, base::LaunchOptions(), NULL);
|
| /external/chromium_org/sandbox/win/src/ |
| process_thread_interception.cc | 263 LPCWSTR application_name, LPWSTR command_line, 270 if (orig_CreateProcessW(application_name, command_line, process_attributes, 306 command_line, cur_dir, proc_info, &answer); 322 LPCSTR application_name, LPSTR command_line, 329 if (orig_CreateProcessA(application_name, command_line, process_attributes, 354 if (command_line) { 355 cmd_unicode = AnsiToUnicode(command_line);
|
| /external/chromium_org/ui/aura/bench/ |
| bench_main.cc | 11 #include "base/command_line.h" 161 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 162 do_draw_ = !command_line->HasSwitch("disable-draw"); 164 std::string webgl_size = command_line->GetSwitchValueASCII("webgl-size"); 334 CommandLine* command_line = CommandLine::ForCurrentProcess(); local 335 bool force = command_line->HasSwitch("force-render-surface"); 346 int frames = atoi(command_line->GetSwitchValueASCII("frames").c_str()); 349 if (command_line->HasSwitch("bench-software-scroll")) {
|
| /external/chromium_org/chrome/browser/printing/ |
| print_dialog_cloud.cc | 11 #include "base/command_line.h" 198 base::string16 GetSwitchValueString16(const CommandLine& command_line, 201 return command_line.GetSwitchValueNative(switchName); 205 native_switch_val = command_line.GetSwitchValueASCII(switchName); 738 const CommandLine& command_line) { 739 DCHECK(command_line.HasSwitch(switches::kCloudPrintFile)); 740 if (!command_line.GetSwitchValuePath(switches::kCloudPrintFile).empty()) { 743 command_line.GetSwitchValuePath(switches::kCloudPrintFile); 747 if (command_line.HasSwitch(switches::kCloudPrintJobTitle)) { 750 command_line, switches::kCloudPrintJobTitle) [all...] |
| /external/chromium_org/courgette/ |
| courgette_tool.cc | 10 #include "base/command_line.h" 430 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local 438 bool cmd_sup = command_line.HasSwitch("supported"); 439 bool cmd_dis = command_line.HasSwitch("dis"); 440 bool cmd_asm = command_line.HasSwitch("asm"); 441 bool cmd_disadj = command_line.HasSwitch("disadj"); 442 bool cmd_make_patch = command_line.HasSwitch("gen"); 443 bool cmd_apply_patch = command_line.HasSwitch("apply"); 444 bool cmd_make_bsdiff_patch = command_line.HasSwitch("genbsdiff"); 445 bool cmd_apply_bsdiff_patch = command_line.HasSwitch("applybsdiff") [all...] |
| /external/chromium_org/base/ |
| command_line.cc | 5 #include "base/command_line.h" 73 void AppendSwitchesAndArguments(CommandLine& command_line, 85 command_line.AppendSwitchNative(UTF16ToASCII(switch_string), 88 command_line.AppendSwitchNative(switch_string, switch_value); 91 command_line.AppendArgNative(arg); 227 CommandLine CommandLine::FromString(const std::wstring& command_line) { 229 cmd.ParseFromString(command_line); 425 void CommandLine::ParseFromString(const std::wstring& command_line) { 427 TrimWhitespace(command_line, TRIM_ALL, &command_line_string); 436 << UTF16ToUTF8(command_line); [all...] |
| /external/chromium_org/content/public/test/ |
| test_launcher.cc | 11 #include "base/command_line.h" 440 const CommandLine* command_line = CommandLine::ForCurrentProcess(); local 442 if (command_line->HasSwitch(kHelpFlag)) { 462 if (command_line->HasSwitch(kSingleProcessTestsFlag) || 463 (command_line->HasSwitch(switches::kSingleProcess) && 464 command_line->HasSwitch(base::kGTestFilterFlag)) || 465 command_line->HasSwitch(base::kGTestListTestsFlag) || 466 command_line->HasSwitch(base::kGTestHelpFlag)) { 472 if (command_line->HasSwitch(switches::kProcessType) || 473 command_line->HasSwitch(kLaunchAsBrowser)) [all...] |
| /external/chromium_org/chrome/browser/policy/cloud/ |
| component_cloud_policy_browsertest.cc | 8 #include "base/command_line.h" 108 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 109 ExtensionBrowserTest::SetUpCommandLine(command_line); 114 command_line->AppendSwitchASCII( 126 CommandLine* command_line = CommandLine::ForCurrentProcess(); variable 127 command_line->AppendSwitchASCII(switches::kDeviceManagementUrl, url);
|