Searched refs:encodedRunEnd (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/
H A DKURL.cpp934 unsigned encodedRunEnd = encodedRunPosition; local
935 while (length - encodedRunEnd >= 3
936 && str[encodedRunEnd] == '%'
937 && isASCIIHexDigit(str[encodedRunEnd + 1])
938 && isASCIIHexDigit(str[encodedRunEnd + 2]))
939 encodedRunEnd += 3;
940 searchPosition = encodedRunEnd;
941 if (encodedRunEnd == encodedRunPosition) {
947 unsigned runLength = (encodedRunEnd - encodedRunPosition) / 3;
964 decodedPosition = encodedRunEnd;
[all...]

Completed in 32 milliseconds