Home
last modified time | relevance | path

Searched refs:hostEnd (Results 1 – 1 of 1) 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()