Home | History | Annotate | Download | only in page

Lines Matching refs:m_host

85         m_host = pattern.substring(hostStartPos, hostEndPos - hostStartPos);
88 if (m_host == "*") {
90 m_host = "";
92 } else if (m_host.startsWith("*.")) {
94 m_host = m_host.substring(2); // Length of "*."
99 if (m_host.find("*") != notFound)
127 if (equalIgnoringCase(host, m_host))
135 if (!m_host.length())
139 if (!host.endsWith(m_host, false))
142 ASSERT(host.length() > m_host.length());
145 return host[host.length() - m_host.length() - 1] == '.';