Searched refs:command_line (Results 76 - 100 of 915) sorted by last modified time

1234567891011>>

/external/chromium_org/ui/native_theme/
H A Dnative_theme_switches.cc5 #include "base/command_line.h"
21 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
23 if (command_line.HasSwitch(switches::kDisableOverlayScrollbar))
25 else if (command_line.HasSwitch(switches::kEnableOverlayScrollbar))
/external/chromium_org/ui/views_content_client/
H A Dviews_content_main_delegate.cc9 #include "base/command_line.h"
43 const CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
45 command_line.GetSwitchValueASCII(switches::kProcessType);
/external/chromium_org/win8/delegate_execute/
H A Dcommand_execute_impl.cc398 base::string16 command_line(chrome.GetCommandLineString());
400 AtlTrace("Formatted command line is %ls\n", command_line.c_str());
404 &command_line[0],
H A Ddelegate_execute_util.cc13 CommandLine command_line(CommandLine::NO_PROGRAM);
18 command_line.ParseFromString(command_string);
19 command_line.SetProgram(base::FilePath());
22 return command_line;
/external/chromium_org/win8/metro_driver/
H A Dchrome_url_launch_handler.cc14 #include "base/command_line.h"
111 CommandLine command_line = CommandLine::FromString(dummy_command_line); local
112 CommandLine::StringVector args = command_line.GetArgs();
/external/chromium_org/win8/test/
H A Dtest_registrar.cc22 #include "base/command_line.h"
36 CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
38 if (!command_line.HasSwitch(win8::test::kTestAppUserModelId))
39 command_line.AppendSwitchNative(win8::test::kTestAppUserModelId,
42 if (!command_line.HasSwitch(win8::test::kTestExeName))
43 command_line.AppendSwitchNative(win8::test::kTestExeName,
46 if (!command_line.HasSwitch(win8::test::kTestExePath)) {
51 command_line.AppendSwitchNative(win8::test::kTestExePath,
55 if (!command_line.HasSwitch(win8::test::kTestProgId))
56 command_line
83 CommandLine& command_line = *CommandLine::ForCurrentProcess(); local
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DMain.py616 return main(command_line = 1)
618 def main(command_line = 0):
621 if command_line:
/external/chromium_org/third_party/cython/src/bin/
H A Dcython8 main(command_line = 1)
/external/chromium_org/third_party/cython/src/
H A Dcython.py17 main(command_line = 1)
/external/chromium_org/third_party/libjingle/overrides/
H A Dinit_webrtc.h48 const base::CommandLine& command_line,
H A Dinitialize_module.cc6 #include "base/command_line.h"
62 bool InitializeModule(const CommandLine& command_line, argument
90 CommandLine::ForCurrentProcess()->AppendArguments(command_line, true);
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py1888 def split_command_line(command_line):
1907 for c in command_line:
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpprof3211 my $command_line = ShellEscape(@URL_FETCHER, $url);
3212 open(CMDLINE, "$command_line |") or error($command_line);
3228 my $command_line = ShellEscape(@URL_FETCHER, "--head", $url);
3229 open(CMDLINE, "$command_line |") or error($command_line);
3310 my $command_line;
3313 $command_line = ShellEscape(@URL_FETCHER, "-d", "\@$main::tmpfile_sym",
3316 $command_line = (ShellEscape(@URL_FETCHER, "--post", $url)
3321 open(SYMBOL, "$command_line |
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpprof3211 my $command_line = ShellEscape(@URL_FETCHER, $url);
3212 open(CMDLINE, "$command_line |") or error($command_line);
3228 my $command_line = ShellEscape(@URL_FETCHER, "--head", $url);
3229 open(CMDLINE, "$command_line |") or error($command_line);
3310 my $command_line;
3313 $command_line = ShellEscape(@URL_FETCHER, "-d", "\@$main::tmpfile_sym",
3316 $command_line = (ShellEscape(@URL_FETCHER, "--post", $url)
3321 open(SYMBOL, "$command_line |
[all...]
/external/chromium_org/net/spdy/fuzzing/
H A Dhpack_example_generator.cc6 #include "base/command_line.h"
35 const base::CommandLine& command_line = local
38 if (!command_line.HasSwitch(kFileToWrite) ||
39 !command_line.HasSwitch(kExampleCount)) {
45 string file_to_write = command_line.GetSwitchValueASCII(kFileToWrite);
48 base::StringToInt(command_line.GetSwitchValueASCII(kExampleCount),
H A Dhpack_fuzz_mutator.cc5 #include "base/command_line.h"
33 const base::CommandLine& command_line = local
36 if (!command_line.HasSwitch(kFileToParse) ||
37 !command_line.HasSwitch(kFileToWrite) ||
38 !command_line.HasSwitch(kFlipsPerThousand)) {
45 string file_to_parse = command_line.GetSwitchValueASCII(kFileToParse);
46 string file_to_write = command_line.GetSwitchValueASCII(kFileToWrite);
49 CHECK(base::StringToInt(command_line.GetSwitchValueASCII(kFlipsPerThousand),
H A Dhpack_fuzz_wrapper.cc6 #include "base/command_line.h"
27 const base::CommandLine& command_line = local
30 if (!command_line.HasSwitch(kFileToParse)) {
35 string file_to_parse = command_line.GetSwitchValueASCII(kFileToParse);
/external/chromium_org/net/test/spawned_test_server/
H A Dlocal_test_server.cc7 #include "base/command_line.h"
25 base::CommandLine* command_line) {
29 command_line->AppendArg(argument_name);
35 command_line->AppendArg(argument_name + "=" + base::IntToString(value));
43 command_line->AppendArg(argument_name + "=" + value);
197 base::CommandLine* command_line) const {
215 if (!AppendArgumentFromJSONValue(key, *(*list_it), command_line))
218 } else if (!AppendArgumentFromJSONValue(key, value, command_line)) {
228 command_line->AppendArg("--https");
232 command_line
23 AppendArgumentFromJSONValue(const std::string& key, const base::Value& value_node, base::CommandLine* command_line) argument
[all...]
H A Dlocal_test_server.h78 // |command_line|. Returns true on success.
79 virtual bool AddCommandLineArguments(base::CommandLine* command_line) const
/external/chromium_org/net/tools/disk_cache_memory_test/
H A Ddisk_cache_memory_test.cc14 #include "base/command_line.h"
271 const base::CommandLine& command_line = local
273 if (command_line.HasSwitch("help")) {
277 if ((command_line.GetSwitches().size() != 1 &&
278 command_line.GetSwitches().size() != 2) ||
279 !command_line.HasSwitch("spec-1") ||
280 (command_line.GetSwitches().size() == 2 &&
281 !command_line.HasSwitch("spec-2"))) {
286 const std::string spec_str_1 = command_line.GetSwitchValueASCII("spec-1");
289 if (command_line
[all...]
/external/chromium_org/net/tools/dump_cache/
H A Ddump_cache.cc12 #include "base/command_line.h"
59 const base::CommandLine& command_line = local
61 base::FilePath input_path = command_line.GetSwitchValuePath(kInputPath);
65 bool dump_to_files = command_line.HasSwitch(kDumpToFiles);
67 base::FilePath output_path = command_line.GetSwitchValuePath(kOutputPath);
81 if (command_line.HasSwitch(kDumpContents))
84 if (command_line.HasSwitch(kDumpHeaders))
/external/chromium_org/net/tools/testserver/
H A Drun_testserver.cc8 #include "base/command_line.h"
29 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
41 if (command_line->GetSwitches().empty() ||
42 command_line->HasSwitch("help")) {
48 if (command_line->HasSwitch("http")) {
50 } else if (command_line->HasSwitch("https")) {
52 } else if (command_line->HasSwitch("ws")) {
54 } else if (command_line->HasSwitch("wss")) {
56 } else if (command_line->HasSwitch("ftp")) {
61 if (command_line
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppp_messaging_proxy_perftest.cc5 #include "base/command_line.h"
59 CommandLine* command_line = CommandLine::ForCurrentProcess(); local
60 if (command_line) {
61 if (command_line->HasSwitch("seed")) {
62 base::StringToInt(command_line->GetSwitchValueASCII("seed"),
65 if (command_line->HasSwitch("string_count")) {
66 base::StringToInt(command_line->GetSwitchValueASCII("string_count"),
69 if (command_line->HasSwitch("max_string_size")) {
70 base::StringToInt(command_line->GetSwitchValueASCII("max_string_size"),
/external/chromium_org/remoting/base/
H A Dservice_urls.cc7 #include "base/command_line.h"
36 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); local
37 CHECK(command_line);
38 if (command_line->HasSwitch(kDirectoryBaseUrlSwitch)) {
39 directory_base_url_ = command_line->GetSwitchValueASCII(
42 if (command_line->HasSwitch(kXmppServerAddressSwitch)) {
43 xmpp_server_address_ = command_line->GetSwitchValueASCII(
46 if (command_line->HasSwitch(kXmppServerDisableTlsSwitch)) {
49 if (command_line->HasSwitch(kDirectoryBotJidSwitch)) {
50 directory_bot_jid_ = command_line
[all...]
/external/chromium_org/remoting/host/
H A Ddaemon_process.cc12 #include "base/command_line.h"
261 const base::CommandLine* command_line = local
267 if (command_line->HasSwitch(kHostConfigSwitchName)) {
268 config_path = command_line->GetSwitchValuePath(kHostConfigSwitchName);

Completed in 6184 milliseconds

1234567891011>>