Home | History | Annotate | Download | only in page

Lines Matching refs:m_host

71     , m_host(url.host().isNull() ? "" : url.host().lower())
96 m_host = originURL.host().lower();
104 if (schemeRequiresAuthority(m_protocol) && m_host.isEmpty())
109 // document.domain starts as m_host, but can be set by the DOM.
110 m_domain = m_host;
135 , m_host(other->m_host.threadsafeCopy())
235 if (m_host == other->m_host && m_port == other->m_port)
400 result.reserveInitialCapacity(m_protocol.length() + m_host.length() + 10);
403 append(result, m_host);
468 m_encodedHost = encodeForFileName(m_host);
492 if (m_host != other->m_host)