HomeSort by relevance Sort by last modified time
    Searched refs:hostEnd (Results 1 - 8 of 8) sorted by null

  /external/nist-sip/java/gov/nist/core/
HostNameParser.java 225 int hostEnd = uriHeader.indexOf(Lexer.QUESTION);
230 if ( hostEnd == -1
231 || (semiColonIndex!= -1 && hostEnd > semiColonIndex) )
232 hostEnd = semiColonIndex;
236 if ( hostEnd == -1 )
237 hostEnd = uriHeader.length();
240 String host = uriHeader.substring(0, hostEnd);
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 129 int hostEnd = fileIdx;
131 hostEnd = refIdx;
133 int userIdx = parseString.lastIndexOf('@', hostEnd);
134 authority = parseString.substring(hostIdx, hostEnd);
162 host = parseString.substring(hostIdx, hostEnd);
165 String portString = parseString.substring(portIdx + 1, hostEnd);
  /external/webkit/WebCore/platform/
KURL.cpp     [all...]
KURLGoogle.cpp 447 return hostEnd() < pathStart();
594 int hostEnd = s.find(":");
595 if (hostEnd != -1) {
596 host = s.left(hostEnd);
597 port = s.substring(hostEnd + 1);
615 String urlWithoutPort = m_url.string().left(hostEnd()) + m_url.string().substring(pathStart());
    [all...]
KURL.h 176 unsigned hostEnd() const;
350 inline unsigned KURL::hostEnd() const
  /external/webkit/WebKit/chromium/tests/
KURLTest.cpp 563 EXPECT_EQ(27u, kurl1.hostEnd());
572 EXPECT_EQ(17u, kurl2.hostEnd());
581 EXPECT_EQ(11u, kurl3.hostEnd());
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 89 unsigned hostEnd = url.hostEnd();
91 return AlreadyHashed::avoidDeletedValue(StringImpl::computeHash(url.string().characters() + hostStart, hostEnd - hostStart));
    [all...]
  /external/webkit/WebCore/html/
HTMLAnchorElement.cpp 387 if (url.hostEnd() == url.pathStart())

Completed in 373 milliseconds