HomeSort by relevance Sort by last modified time
    Searched refs:command_line (Results 101 - 125 of 162) sorted by null

1 2 3 45 6 7

  /external/chromium/chrome/browser/printing/
print_dialog_cloud.cc 9 #include "base/command_line.h"
587 bool CreatePrintDialogFromCommandLine(const CommandLine& command_line) {
588 if (!command_line.GetSwitchValuePath(switches::kCloudPrintFile).empty()) {
591 command_line.GetSwitchValuePath(switches::kCloudPrintFile);
594 if (command_line.HasSwitch(switches::kCloudPrintJobTitle)) {
597 native_job_title = command_line.GetSwitchValueNative(
606 if (command_line.HasSwitch(switches::kCloudPrintFileType)) {
607 file_type = command_line.GetSwitchValueASCII(
  /external/chromium/chrome/browser/chromeos/cros/
login_library.cc 147 bool RestartJob(int pid, const std::string& command_line) {
152 job_restart_request_ = new JobRestartRequest(pid, command_line);
160 JobRestartRequest(int pid, const std::string& command_line)
162 command_line_(command_line),
359 bool RestartJob(int pid, const std::string& command_line) { return true; }
  /external/chromium/chrome/browser/profiles/
profile_impl_io_data.cc 7 #include "base/command_line.h"
172 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
174 command_line.HasSwitch(switches::kRecordMode);
175 bool playback_mode = command_line.HasSwitch(switches::kPlaybackMode);
306 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
308 command_line.HasSwitch(switches::kRecordMode);
309 bool playback_mode = command_line.HasSwitch(switches::kPlaybackMode);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_test.cc 19 #include "base/command_line.h"
288 virtual void SetUpCommandLine(CommandLine* command_line) {
291 command_line->AppendSwitch(switches::kSbDisableAutoUpdate);
296 command_line->AppendSwitch(switches::kDisableIPv6);
300 command_line->AppendSwitch(switches::kSbDisableDownloadProtection);
309 command_line->AppendSwitchASCII(switches::kSbInfoURLPrefix, url_prefix);
310 command_line->AppendSwitchASCII(switches::kSbMacKeyURLPrefix, url_prefix);
  /external/chromium/chrome/browser/
about_flags.cc 12 #include "base/command_line.h"
307 void ConvertFlagsToSwitches(PrefService* prefs, CommandLine* command_line);
473 void ConvertFlagsToSwitches(PrefService* prefs, CommandLine* command_line) {
474 FlagsState::GetInstance()->ConvertFlagsToSwitches(prefs, command_line);
565 PrefService* prefs, CommandLine* command_line) {
566 if (command_line->HasSwitch(switches::kNoExperiments))
591 command_line->AppendSwitch(switches::kFlagSwitchesBegin);
609 command_line->AppendSwitchASCII(switch_and_value_pair.first,
613 command_line->AppendSwitch(switches::kFlagSwitchesEnd);
background_contents_service.h 48 BackgroundContentsService(Profile* profile, const CommandLine* command_line);
background_page_tracker.cc 11 #include "base/command_line.h"
144 CommandLine* command_line = CommandLine::ForCurrentProcess();
145 return BackgroundModeManager::IsBackgroundModeEnabled(command_line);
mach_broker_mac.cc 7 #include "base/command_line.h"
238 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
239 const bool is_child = command_line.HasSwitch(switches::kProcessType);
  /external/chromium/chrome/browser/extensions/
extension_apitest.cc 240 void ExtensionApiTest::SetUpCommandLine(CommandLine* command_line) {
241 ExtensionBrowserTest::SetUpCommandLine(command_line);
extension_browsertest.h 11 #include "base/command_line.h"
28 virtual void SetUpCommandLine(CommandLine* command_line);
extension_tts_apitest.cc 4 #include "base/command_line.h"
47 virtual void SetUpCommandLine(CommandLine* command_line) {
48 ExtensionApiTest::SetUpCommandLine(command_line);
49 command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
extension_browsertest.cc 9 #include "base/command_line.h"
41 void ExtensionBrowserTest::SetUpCommandLine(CommandLine* command_line) {
55 command_line->AppendSwitchASCII(switches::kLoginUser,
57 command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
58 command_line->AppendSwitch(switches::kNoFirstRun);
  /external/chromium/chrome/browser/policy/
browser_policy_connector.cc 7 #include "base/command_line.h"
40 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
41 if (command_line->HasSwitch(switches::kEnableDevicePolicy)) {
  /external/chromium/chrome/browser/ui/webui/options/
language_options_handler_common.cc 13 #include "base/command_line.h"
97 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
99 command_line.HasSwitch(switches::kExperimentalSpellcheckerFeatures);
about_page_handler.cc 11 #include "base/command_line.h"
133 { "command_line", IDS_ABOUT_VERSION_COMMAND_LINE },
250 std::string command_line = ""; local
254 command_line += " " + *iter;
255 localized_strings->SetString("command_line_info", command_line);
  /external/dbus/dbus/
dbus-shell.c 347 tokenize_command_line (const char *command_line, DBusError *error)
357 p = command_line;
547 * @command_line: command line to parse
553 _dbus_shell_parse_argv (const char *command_line,
565 if (!command_line)
571 tokens = tokenize_command_line (command_line, error);
574 _dbus_verbose ("No tokens for command line '%s'\n", command_line);
  /external/chromium/chrome/browser/chromeos/login/
screen_locker_browsertest.cc 5 #include "base/command_line.h"
169 virtual void SetUpCommandLine(CommandLine* command_line) {
170 command_line->AppendSwitchASCII(switches::kLoginProfile, "user");
171 command_line->AppendSwitch(switches::kNoFirstRun);
  /external/linux-tools-perf/util/scripting-engines/
trace-event-python.c 365 const char **command_line; local
370 command_line = malloc((argc + 1) * sizeof(const char *));
371 command_line[0] = script;
373 command_line[i] = argv[i - 1];
379 PySys_SetArgv(argc + 1, (char **)command_line);
401 free(command_line);
406 free(command_line);
  /external/chromium/base/
command_line.cc 5 #include "base/command_line.h"
188 CommandLine CommandLine::FromString(const std::wstring& command_line) {
190 cmd.ParseFromString(command_line);
439 void CommandLine::ParseFromString(const std::wstring& command_line) {
440 TrimWhitespace(command_line, TRIM_ALL, &command_line_string_);
logging.cc 49 #include "base/command_line.h"
362 CommandLine* command_line = CommandLine::ForCurrentProcess();
368 if (command_line->HasSwitch(switches::kV) ||
369 command_line->HasSwitch(switches::kVModule)) {
371 new VlogInfo(command_line->GetSwitchValueASCII(switches::kV),
372 command_line->GetSwitchValueASCII(switches::kVModule),
  /external/chromium/net/test/
test_server.h 159 // |command_line|. Return true on success.
160 bool AddCommandLineArguments(CommandLine* command_line) const;
  /external/chromium/chrome/browser/diagnostics/
diagnostics_main.cc 16 #include "base/command_line.h"
338 int DiagnosticsMain(const CommandLine& command_line) {
351 DiagnosticsModel* model = MakeDiagnosticsModel(command_line);
  /external/chromium/chrome/browser/sync/
profile_sync_factory_impl.cc 5 #include "base/command_line.h"
79 CommandLine* command_line)
81 command_line_(command_line) {
  /external/chromium/third_party/libjingle/source/talk/base/
flags.cc 288 LPTSTR command_line = ::GetCommandLine(); local
290 LPWSTR *wide_argv = ::CommandLineToArgvW(command_line, &argc_);
  /external/chromium/chrome/browser/prerender/
prerender_browsertest.cc 5 #include "base/command_line.h"
136 virtual void SetUpCommandLine(CommandLine* command_line) {
137 command_line->AppendSwitchASCII(switches::kPrerender,
144 command_line->AppendSwitchPath(

Completed in 1233 milliseconds

1 2 3 45 6 7