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

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntityParser.h 64 bool consumeHTMLEntity(SegmentedString&, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter = '\0');
HTMLEntityParser.cpp 104 static bool consumeNamedEntity(SegmentedString& source, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter, UChar& cc)
116 notEnoughCharacters = source.isEmpty();
117 if (notEnoughCharacters) {
157 bool consumeHTMLEntity(SegmentedString& source, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter)
160 ASSERT(!notEnoughCharacters);
257 return consumeNamedEntity(source, decodedEntity, notEnoughCharacters, additionalAllowedCharacter, cc);
268 notEnoughCharacters = true;
HTMLTokenizer.cpp 160 bool notEnoughCharacters = false;
162 bool success = consumeHTMLEntity(source, decodedEntity, notEnoughCharacters);
163 if (notEnoughCharacters)
    [all...]

Completed in 52 milliseconds