Searched defs:lastParsedIndex (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDimension.cpp40 static HTMLDimension parseDimension(const CharacterType* characters, size_t lastParsedIndex, size_t endOfCurrentToken) argument
46 while (lastParsedIndex < endOfCurrentToken && isASCIISpace((characters[lastParsedIndex])))
47 ++lastParsedIndex;
50 if (lastParsedIndex >= endOfCurrentToken)
53 size_t position = lastParsedIndex;
57 if (position > lastParsedIndex) {
59 unsigned integerValue = charactersToUIntStrict(characters + lastParsedIndex, position - lastParsedIndex, &ok);
94 static HTMLDimension parseDimension(const String& rawToken, size_t lastParsedIndex, size_ argument
119 size_t lastParsedIndex = 0; local
[all...]

Completed in 111 milliseconds