HomeSort by relevance Sort by last modified time
    Searched refs:HasSwitch (Results 1 - 9 of 9) sorted by null

  /external/chromium/base/
command_line_unittest.cc 33 EXPECT_FALSE(cl.HasSwitch("cruller"));
34 EXPECT_FALSE(cl.HasSwitch("flim"));
35 EXPECT_FALSE(cl.HasSwitch("program"));
36 EXPECT_FALSE(cl.HasSwitch("dog"));
37 EXPECT_FALSE(cl.HasSwitch("cat"));
38 EXPECT_FALSE(cl.HasSwitch("output-rotation"));
39 EXPECT_FALSE(cl.HasSwitch("not-a-switch"));
40 EXPECT_FALSE(cl.HasSwitch("--"));
44 EXPECT_TRUE(cl.HasSwitch("foo"));
45 EXPECT_TRUE(cl.HasSwitch("bar"))
    [all...]
command_line.h 98 bool HasSwitch(const std::string& switch_string) const;
101 bool HasSwitch(const std::wstring& switch_string) const {
102 return HasSwitch(WideToASCII(switch_string));
command_line.cc 257 bool CommandLine::HasSwitch(const std::string& switch_string) const {
logging.cc 260 CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnableDCHECK);
  /external/chromium/net/tools/dump_cache/
dump_cache.cc 82 bool do_upgrade = command_line.HasSwitch(kUpgrade);
83 bool do_convert_to_text = command_line.HasSwitch(kDumpToFiles);
125 if (command_line.HasSwitch(kUpgrade))
127 if (command_line.HasSwitch(kDumpToFiles))
141 if (command_line.HasSwitch(kSlave)) {
149 if (command_line.HasSwitch(kSlave) && slave_required)
175 if (command_line.HasSwitch(kDumpContents))
177 if (command_line.HasSwitch(kDumpHeaders))
  /external/chromium/net/tools/fetch/
fetch_server.cc 42 if (parsed_command_line.HasSwitch("stats")) {
fetch_client.cc 127 if (parsed_command_line.HasSwitch("n"))
129 bool use_cache = parsed_command_line.HasSwitch("use-cache");
186 if (parsed_command_line.HasSwitch("stats")) {
  /external/chromium/net/tools/hresolv/
hresolv.cc 323 options->async = command_line->HasSwitch(kAsync);
324 if (command_line->HasSwitch(kCacheSize)) {
336 if (command_line->HasSwitch(kCacheTtl)) {
348 if (command_line->HasSwitch(kInputPath)) {
  /external/chromium/base/test/
test_suite.h 203 !CommandLine::ForCurrentProcess()->HasSwitch("show-error-dialogs")) {

Completed in 550 milliseconds