Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/net/
DHostAndPort.java151 String portString = null; in fromString() local
159 portString = matcher.group(2); // could be null in fromString()
165 portString = hostPortString.substring(colonPos + 1); in fromString()
174 if (portString != null) { in fromString()
177 checkArgument(!portString.startsWith("+"), "Unparseable port number: %s", hostPortString); in fromString()
179 port = Integer.parseInt(portString); in fromString()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DLocation.cpp176 …on::setPort(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& portString) in setPort() argument
181 url.setPort(portString); in setPort()
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
DKURL.cpp549 String portString = String::number(port); in setPort() local
550 ASSERT(portString.is8Bit()); in setPort()
553 …placements.SetPort(reinterpret_cast<const char*>(portString.characters8()), url::Component(0, port… in setPort()
/external/robolectric/src/main/java/android/net/
DUri__FromAndroid.java1066 String portString = decode(authority.substring(portSeparator + 1)); in parsePort() local
1068 return Integer.parseInt(portString); in parsePort()