Searched refs:hostEnd (Results 1 – 5 of 5) sorted by relevance
225 int hostEnd = uriHeader.indexOf(Lexer.QUESTION); in isIPv6Address() local230 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()
52 if (kurl.hostEnd() == kurl.pathStart()) in host()
585 EXPECT_EQ(27u, kurl1.hostEnd()); in TEST()594 EXPECT_EQ(17u, kurl2.hostEnd()); in TEST()603 EXPECT_EQ(11u, kurl3.hostEnd()); in TEST()
168 unsigned hostEnd() const;
318 return hostEnd() < pathStart(); in hasPort()739 unsigned KURL::hostEnd() const in hostEnd() function in WebCore::KURL