Home | History | Annotate | Download | only in page

Lines Matching refs:host

38 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting)
40 , m_host(host.lower())
45 // Assume that any host that ends with a digit is trying to be an IP address.
51 ASSERT(origin.host() == origin.host().lower());
57 // Special case: Include subdomains and empty host means "all hosts, including ip addresses".
62 if (m_host == origin.host())
74 if (origin.host().length() > m_host.length() && origin.host()[origin.host().length() - m_host.length() - 1] == '.' && origin.host().endsWith(m_host))