HomeSort by relevance Sort by last modified time
    Searched full:m_host (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/page/
OriginAccessEntry.cpp 40 , m_host(host.lower())
47 m_hostIsIPAddress = !m_host.isEmpty() && isASCIIDigit(m_host[m_host.length() - 1]);
59 if (m_subdomainSettings == AllowSubdomains && m_host.isEmpty())
63 if (m_host == origin.host())
75 if (origin.host().length() > m_host.length() && origin.host()[origin.host().length() - m_host.length() - 1] == '.' && origin.host().endsWith(m_host))
UserContentURLPattern.cpp 85 m_host = pattern.substring(hostStartPos, hostEndPos - hostStartPos);
89 m_host.split(".", hostComponents);
92 m_host = "";
94 m_host = m_host + hostComponents[i];
96 m_host = m_host + ".";
101 if (m_host.find("*") != -1)
128 if (test.host() == m_host)
136 if (!m_host.length()
    [all...]
UserContentURLPattern.h 47 const String& host() const { return m_host; }
63 String m_host; member in class:WebCore::UserContentURLPattern
SecurityOrigin.cpp 83 , m_host(url.host().isNull() ? "" : url.host().lower())
93 // document.domain starts as m_host, but can be set by the DOM.
94 m_domain = m_host;
111 , m_host(other->m_host.threadsafeCopy())
204 if (m_host == other->m_host && m_port == other->m_port)
316 result.reserveInitialCapacity(m_protocol.length() + m_host.length() + 10);
319 append(result, m_host);
372 return m_protocol + separatorString + m_host + separatorString + String::number(m_port);
    [all...]
OriginAccessEntry.h 53 String m_host; member in class:WebCore::OriginAccessEntry
SecurityOrigin.h 69 String host() const { return m_host; }
197 String m_host; member in class:WebCore::SecurityOrigin
  /external/webkit/WebCore/platform/network/
ProtectionSpace.cpp 39 : m_host("")
51 : m_host(host.length() ? host : "")
62 return m_host;
ProtectionSpace.h 72 String m_host; member in class:WebCore::ProtectionSpace
  /external/webkit/WebCore/bindings/v8/
V8GCController.h 60 GlobalHandleInfo(void* host, GlobalHandleType type) : m_host(host), m_type(type) { }
61 void* m_host; member in class:WebCore::GlobalHandleInfo
V8GCController.cpp 101 ASSERT(info->m_host == host);
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
URI.java 125 private String m_host = null; field in class:URI
345 m_host = p_other.getHost();
437 m_host = "";
458 if (m_path.length() == 0 && m_scheme == null && m_host == null)
462 m_host = p_base.getHost();
483 if (m_host == null)
486 m_host = p_base.getHost();
865 if (m_userinfo != null || m_host != null || m_port != -1)
876 if (m_host != null)
878 schemespec.append(m_host);
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
URI.java 122 private String m_host = null; field in class:URI
342 m_host = p_other.getHost();
457 m_host = "";
478 if (m_path.length() == 0 && m_scheme == null && m_host == null)
482 m_host = p_base.getHost();
503 if (m_host == null)
506 m_host = p_base.getHost();
885 if (m_userinfo != null || m_host != null || m_port != -1)
896 if (m_host != null)
898 schemespec.append(m_host);
    [all...]

Completed in 433 milliseconds