Home | History | Annotate | Download | only in page

Lines Matching refs:m_protocol

70     , m_protocol(url.protocol().isNull() ? "" : url.protocol().lower())
73 , m_isUnique(isSandboxed(SandboxOrigin) || SchemeRegistry::shouldTreatURLSchemeAsNoAccess(m_protocol))
79 if (m_protocol == "about" || m_protocol == "javascript")
80 m_protocol = "";
85 if (m_protocol == BlobURL::blobProtocol())
89 if (m_protocol == "filesystem")
95 m_protocol = originURL.protocol().lower();
104 if (schemeRequiresAuthority(m_protocol) && m_host.isEmpty())
106 if (m_protocol.isEmpty())
128 if (isDefaultPortForProtocol(m_port, m_protocol))
134 , m_protocol(other->m_protocol.threadsafeCopy())
150 return m_protocol.isEmpty();
233 if (m_protocol == other->m_protocol) {
309 if (m_protocol == "data")
340 return m_protocol == protocol || isAccessToURLWhiteListed(url);
372 return SchemeRegistry::shouldTreatURLSchemeAsLocal(m_protocol);
393 if (m_protocol == "file") {
400 result.reserveInitialCapacity(m_protocol.length() + m_host.length() + 10);
401 append(result, m_protocol);
470 return m_protocol + separatorString + m_encodedHost + separatorString + String::number(m_port);
495 if (m_protocol != other->m_protocol)