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

  /external/chromium/googleurl/src/
gurl_unittest.cc 377 TEST(GURLTest, DomainIs) {
381 EXPECT_TRUE(url_1.DomainIs(google_domain));
384 EXPECT_TRUE(url_2.DomainIs(google_domain));
387 EXPECT_TRUE(url_3.DomainIs(google_domain));
390 EXPECT_FALSE(url_4.DomainIs("google.com."));
393 EXPECT_TRUE(url_5.DomainIs("google.com."));
396 EXPECT_TRUE(url_6.DomainIs(".com."));
399 EXPECT_FALSE(url_7.DomainIs(google_domain));
402 EXPECT_FALSE(url_8.DomainIs(google_domain));
405 EXPECT_FALSE(url_9.DomainIs(google_domain))
    [all...]
gurl.h 325 // If function DomainIs has parameter domain_len, which means the parameter
327 bool DomainIs(const char* lower_ascii_domain, int domain_len) const;
329 // If function DomainIs only has parameter lower_ascii_domain, which means
331 bool DomainIs(const char* lower_ascii_domain) const {
332 return DomainIs(lower_ascii_domain,
gurl.cc 405 bool GURL::DomainIs(const char* lower_ascii_domain,
  /external/chromium/net/base/
sdch_manager.cc 129 !url.DomainIs(supported_domain_.data(), supported_domain_.size()))
516 return gurl.DomainIs(restriction.data(), restriction.size());

Completed in 705 milliseconds