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

  /external/webkit/Source/WebCore/html/parser/
HTMLEntityParser.h 34 bool consumeHTMLEntity(SegmentedString&, Vector<UChar, 16>& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter = '\0');
HTMLEntityParser.cpp 101 bool consumeHTMLEntity(SegmentedString& source, Vector<UChar, 16>& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter)
104 ASSERT(!notEnoughCharacters);
206 notEnoughCharacters = source.isEmpty();
207 if (notEnoughCharacters) {
248 notEnoughCharacters = true;
HTMLTokenizer.cpp 130 bool notEnoughCharacters = false;
132 bool success = consumeHTMLEntity(source, decodedEntity, notEnoughCharacters);
133 if (notEnoughCharacters)
    [all...]

Completed in 25 milliseconds