OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:portEnd
(Results
1 - 2
of
2
) sorted by null
/external/webkit/WebCore/html/
HTMLAnchorElement.cpp
62
static unsigned parsePortFromStringPosition(const String& value, unsigned portStart, unsigned&
portEnd
)
64
portEnd
= portStart;
65
while (isASCIIDigit(value[
portEnd
]))
66
++
portEnd
;
67
return value.substring(portStart,
portEnd
- portStart).toUInt();
409
unsigned
portEnd
;
410
unsigned port = parsePortFromStringPosition(value, separator + 1,
portEnd
);
420
url.setHostAndPort(value.substring(0,
portEnd
));
/external/webkit/WebCore/platform/
KURL.cpp
[
all
...]