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

  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.cpp 65 static unsigned parsePortFromStringPosition(const String& value, unsigned portStart, unsigned& portEnd)
67 portEnd = portStart;
68 while (isASCIIDigit(value[portEnd]))
69 ++portEnd;
70 return value.substring(portStart, portEnd - portStart).toUInt();
345 unsigned portEnd;
346 unsigned port = parsePortFromStringPosition(value, separator + 1, portEnd);
356 url.setHostAndPort(value.substring(0, portEnd));
  /external/webkit/Source/WebCore/platform/
KURL.cpp     [all...]

Completed in 60 milliseconds