Home
last modified time | relevance | path

Searched refs:hostEnd (Results 1 – 9 of 9) sorted by relevance

/external/nist-sip/java/gov/nist/core/
DHostNameParser.java225 int hostEnd = uriHeader.indexOf(Lexer.QUESTION); in isIPv6Address() local
230 if ( hostEnd == -1 in isIPv6Address()
231 || (semiColonIndex!= -1 && hostEnd > semiColonIndex) ) in isIPv6Address()
232 hostEnd = semiColonIndex; in isIPv6Address()
236 if ( hostEnd == -1 ) in isIPv6Address()
237 hostEnd = uriHeader.length(); in isIPv6Address()
240 String host = uriHeader.substring(0, hostEnd); in isIPv6Address()
/external/webkit/WebCore/platform/
DKURL.cpp1069 int hostEnd; in parse() local
1126 hostEnd = hostStart; in parse()
1129 if (url[hostEnd] == '[') { in parse()
1130 hostEnd++; in parse()
1131 while (isIPv6Char(url[hostEnd])) in parse()
1132 hostEnd++; in parse()
1133 if (url[hostEnd] == ']') in parse()
1134 hostEnd++; in parse()
1142 while (isHostnameChar(url[hostEnd])) in parse()
1143 hostEnd++; in parse()
[all …]
DKURLGoogle.cpp447 return hostEnd() < pathStart(); in hasPort()
594 int hostEnd = s.find(":"); in setHostAndPort() local
595 if (hostEnd != -1) { in setHostAndPort()
596 host = s.left(hostEnd); in setHostAndPort()
597 port = s.substring(hostEnd + 1); in setHostAndPort()
615 … String urlWithoutPort = m_url.string().left(hostEnd()) + m_url.string().substring(pathStart()); in removePort()
1060 unsigned KURL::hostEnd() const in hostEnd() function in WebCore::KURL
1117 if (a.hostEnd() - hostStartA != b.hostEnd() - hostStartB) in protocolHostAndPortAreEqual()
1126 for (int i = hostStartA; i < static_cast<int>(a.hostEnd()); ++i) in protocolHostAndPortAreEqual()
DKURL.h176 unsigned hostEnd() const;
350 inline unsigned KURL::hostEnd() const in hostEnd() function
/external/webkit/WebKit/chromium/tests/
DKURLTest.cpp563 EXPECT_EQ(27u, kurl1.hostEnd()); in TEST()
572 EXPECT_EQ(17u, kurl2.hostEnd()); in TEST()
581 EXPECT_EQ(11u, kurl3.hostEnd()); in TEST()
/external/webkit/WebCore/loader/appcache/
DApplicationCacheStorage.cpp89 unsigned hostEnd = url.hostEnd(); in urlHostHash() local
91 …dDeletedValue(StringImpl::computeHash(url.string().characters() + hostStart, hostEnd - hostStart)); in urlHostHash()
/external/webkit/WebCore/html/
DHTMLAnchorElement.cpp387 if (url.hostEnd() == url.pathStart()) in host()
/external/webkit/WebCore/
DChangeLog-2008-08-1028060 (WebCore::KURL::hostEnd):
28306 (WebCore::KURL::hostEnd):
DChangeLog-2009-06-1662406 (WebCore::KURL::hostEnd):