Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DUri.java1093 int portSeparator = authority.indexOf(':', userInfoSeparator); in parseHost() local
1095 String encodedHost = portSeparator == NOT_FOUND in parseHost()
1097 : authority.substring(userInfoSeparator + 1, portSeparator); in parseHost()
1119 int portSeparator = authority.indexOf(':', userInfoSeparator); in parsePort() local
1121 if (portSeparator == NOT_FOUND) { in parsePort()
1125 String portString = decode(authority.substring(portSeparator + 1)); in parsePort()