HomeSort by relevance Sort by last modified time
    Searched defs:portStart (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 132 int portStart = hostEnd + 1;
133 if (portStart < fileStart) {
134 port = Integer.parseInt(spec.substring(portStart, fileStart));
  /external/webkit/Source/WebCore/platform/
KURL.cpp 758 int portStart = (colonNeeded ? m_hostEnd : m_hostEnd + 1);
760 parse(m_string.left(portStart) + (colonNeeded ? ":" : "") + String::number(i) + m_string.substring(m_portEnd));
    [all...]

Completed in 63 milliseconds