HomeSort by relevance Sort by last modified time
    Searched full:commandline (Results 1 - 25 of 2662) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/base/
ui_base_switches_util.cc 16 if (CommandLine::ForCurrentProcess()->HasSwitch(
25 return CommandLine::ForCurrentProcess()->HasSwitch(
31 return !CommandLine::ForCurrentProcess()->HasSwitch(
34 return CommandLine::ForCurrentProcess()->HasSwitch(
41 return !CommandLine::ForCurrentProcess()->HasSwitch(
44 return CommandLine::ForCurrentProcess()->HasSwitch(
  /external/chromium_org/content/child/
runtime_features.h 9 class CommandLine;
15 const base::CommandLine& command_line);
  /external/chromium_org/win8/delegate_execute/
delegate_execute_util.cc 12 CommandLine CommandLineFromParameters(const wchar_t* params) {
13 CommandLine command_line(CommandLine::NO_PROGRAM);
25 CommandLine MakeChromeCommandLine(const base::FilePath& chrome_exe,
26 const CommandLine& params,
28 CommandLine chrome_cmd(params);
41 CommandLine cmd_line(CommandLine::NO_PROGRAM);
delegate_execute_util.h 17 // Returns a CommandLine with an empty program parsed from |params|.
18 base::CommandLine CommandLineFromParameters(const wchar_t* params);
20 // Returns a CommandLine to launch |chrome_exe| with all switches and arguments
22 base::CommandLine MakeChromeCommandLine(const base::FilePath& chrome_exe,
23 const base::CommandLine& params,
  /external/chromium_org/base/
command_line.cc 25 CommandLine* CommandLine::current_process_commandline_ = NULL;
29 const CommandLine::CharType kSwitchTerminator[] = FILE_PATH_LITERAL("--");
30 const CommandLine::CharType kSwitchValueSeparator[] = FILE_PATH_LITERAL("=");
38 const CommandLine::CharType* const kSwitchPrefixes[] = {L"--", L"-", L"/"};
41 const CommandLine::CharType* const kSwitchPrefixes[] = {"--", "-"};
45 size_t GetSwitchPrefixLength(const CommandLine::StringType& string) {
47 CommandLine::StringType prefix(kSwitchPrefixes[i]);
56 bool IsSwitch(const CommandLine::StringType& string,
57 CommandLine::StringType* switch_string
    [all...]
command_line_unittest.cc 20 static const CommandLine::StringType kTrickyQuoted =
24 static const CommandLine::StringType kTricky =
28 const CommandLine::CharType* argv[] = {
47 CommandLine cl(arraysize(argv), argv);
80 const CommandLine::StringVector& args = cl.GetArgs();
83 std::vector<CommandLine::StringType>::const_iterator iter = args.begin();
105 CommandLine cl = CommandLine::FromString(
145 const CommandLine::StringVector& args = cl.GetArgs();
148 std::vector<CommandLine::StringType>::const_iterator iter = args.begin()
    [all...]
  /external/chromium_org/tools/android/common/
daemon.h 9 class CommandLine;
14 bool HasHelpSwitch(const base::CommandLine& command_line);
16 bool HasNoSpawnDaemonSwitch(const base::CommandLine& command_line);
  /external/chromium_org/chrome/browser/app_mode/
app_mode_utils.cc 42 CommandLine* command_line = CommandLine::ForCurrentProcess();
48 CommandLine* command_line = CommandLine::ForCurrentProcess();
  /external/chromium_org/chrome/browser/prefs/
command_line_pref_store_unittest.cc 26 explicit TestCommandLinePrefStore(CommandLine* cl)
67 CommandLine cl(CommandLine::NO_PROGRAM);
80 CommandLine cl(CommandLine::NO_PROGRAM);
90 CommandLine cl(CommandLine::NO_PROGRAM);
102 CommandLine cl(CommandLine::NO_PROGRAM);
132 CommandLine cl(CommandLine::NO_PROGRAM)
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
chrome_component_updater_configurator.h 11 class CommandLine;
23 const base::CommandLine* cmdline,
  /external/chromium_org/cloud_print/service/win/
service_utils.h 11 class CommandLine;
16 void CopyChromeSwitchesFromCurrentProcess(base::CommandLine* destination);
  /external/chromium_org/components/nacl/common/
nacl_cmd_line.h 9 class CommandLine;
16 void CopyNaClCommandLineArguments(base::CommandLine* cmd_line);
nacl_cmd_line.cc 13 void CopyNaClCommandLineArguments(CommandLine* cmd_line) {
14 const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess();
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentCommandLineTest.java 10 import org.chromium.base.CommandLine;
40 CommandLine.reset();
44 assertFalse(CommandLine.getInstance().isNativeImplementation());
56 assertTrue(CommandLine.getInstance().isNativeImplementation());
60 CommandLine cl = CommandLine.getInstance();
75 CommandLine cl = CommandLine.getInstance();
101 CommandLine cl = CommandLine.getInstance()
    [all...]
  /external/chromium_org/mojo/shell/desktop/
mojo_main.cc 23 const base::CommandLine& command_line =
24 *base::CommandLine::ForCurrentProcess();
25 base::CommandLine::StringVector args = command_line.GetArgs();
26 for (base::CommandLine::StringVector::const_iterator it = args.begin();
37 base::CommandLine::Init(argc, argv);
42 base::CommandLine::ForCurrentProcess()->AppendSwitch(
50 *base::CommandLine::ForCurrentProcess())) {
63 const base::CommandLine& command_line =
64 *base::CommandLine::ForCurrentProcess();
  /external/chromium_org/components/signin/core/common/
profile_management_switches.h 13 class CommandLine;
46 void EnableNewAvatarMenuForTesting(base::CommandLine* command_line);
47 void DisableNewAvatarMenuForTesting(base::CommandLine* command_line);
48 void EnableNewProfileManagementForTesting(base::CommandLine* command_line);
49 void EnableAccountConsistencyForTesting(base::CommandLine* command_line);
  /external/chromium_org/chrome/browser/chromeos/login/
chrome_restart_request.h 13 class CommandLine;
23 const base::CommandLine& base_command_line,
24 base::CommandLine* command_line);
  /external/chromium_org/base/test/
multiprocess_test.cc 15 const CommandLine& base_command_line,
17 CommandLine command_line(base_command_line);
30 CommandLine GetMultiProcessTestChildBaseCommandLine() {
31 return *CommandLine::ForCurrentProcess();
53 CommandLine MultiProcessTest::MakeCmdLine(const std::string& procname) {
54 CommandLine command_line = GetMultiProcessTestChildBaseCommandLine();
  /external/chromium_org/chrome/common/
switch_utils_unittest.cc 13 const CommandLine::CharType* argv[] = {
20 CommandLine cmd_line(arraysize(argv), argv);
23 std::map<std::string, CommandLine::StringType> switches =
37 CommandLine cmd_line = CommandLine::FromString(
46 std::map<std::string, CommandLine::StringType> switches =
  /external/chromium_org/base/android/
command_line_android.cc 26 CommandLine extra_command_line(vec);
27 CommandLine::ForCurrentProcess()->AppendArguments(extra_command_line,
34 CommandLine::Reset();
39 return CommandLine::ForCurrentProcess()->HasSwitch(switch_string);
44 std::string value(CommandLine::ForCurrentProcess()->GetSwitchValueNative(
54 CommandLine::ForCurrentProcess()->AppendSwitch(switch_string);
61 CommandLine::ForCurrentProcess()->AppendSwitchASCII(switch_string,
76 CommandLine::Init(0, NULL);
  /external/chromium_org/chrome/browser/
chrome_browser_field_trials_mobile.h 14 class CommandLine;
23 void SetupMobileFieldTrials(const base::CommandLine& parsed_command_line);
  /external/chromium_org/chrome/browser/chromeos/login/session/
chrome_session_manager.h 12 class CommandLine;
22 const base::CommandLine& parsed_command_line,
  /external/chromium_org/chrome/browser/first_run/
upgrade_util.cc 12 CommandLine* command_line;
18 void SetNewCommandLine(CommandLine* new_command_line) {
  /external/chromium_org/chrome/test/base/
test_launcher_utils.h 14 class CommandLine;
22 void PrepareBrowserCommandLineForTests(base::CommandLine* command_line);
  /external/chromium_org/components/invalidation/
invalidation_service_util.h 11 class CommandLine;
18 const base::CommandLine& command_line);

Completed in 613 milliseconds

1 2 3 4 5 6 7 8 91011>>