Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DUri.java1085 int portSeparator = authority.indexOf(':', userInfoSeparator); in parseHost() local
1087 String encodedHost = portSeparator == NOT_FOUND in parseHost()
1089 : authority.substring(userInfoSeparator + 1, portSeparator); in parseHost()
1111 int portSeparator = authority.indexOf(':', userInfoSeparator); in parsePort() local
1113 if (portSeparator == NOT_FOUND) { in parsePort()
1117 String portString = decode(authority.substring(portSeparator + 1)); in parsePort()