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

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntityParser.cpp 58 static void appendLegalEntityFor(UChar32 c, DecodedHTMLEntity& decodedEntity)
62 decodedEntity.append(0xFFFD);
66 decodedEntity.append(adjustEntity(c));
69 decodedEntity.append(c);
104 static bool consumeNamedEntity(SegmentedString& source, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter, UChar& cc)
148 decodedEntity.append(entitySearch.mostRecentMatch()->firstValue);
150 decodedEntity.append(second);
157 bool consumeHTMLEntity(SegmentedString& source, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter)
161 ASSERT(decodedEntity.isEmpty());
234 appendLegalEntityFor(result, decodedEntity);
    [all...]
HTMLEntityParser.h 64 bool consumeHTMLEntity(SegmentedString&, DecodedHTMLEntity& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter = '\0');
HTMLTokenizer.cpp 161 DecodedHTMLEntity decodedEntity;
162 bool success = consumeHTMLEntity(source, decodedEntity, notEnoughCharacters);
166 ASSERT(decodedEntity.isEmpty());
169 for (unsigned i = 0; i < decodedEntity.length; ++i)
170 bufferCharacter(decodedEntity.data[i]);
    [all...]

Completed in 50 milliseconds