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

/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLEntityParser.h34 bool consumeHTMLEntity(SegmentedString&, StringBuilder& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter = '\0');
H A DHTMLEntityParser.cpp73 inline static bool consumeNamedEntity(SegmentedString& source, StringBuilder& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter, UChar& cc) argument
116 decodedEntity.append(entitySearch.mostRecentMatch()->firstValue);
118 decodedEntity.append(entitySearch.mostRecentMatch()->secondValue);
126 bool consumeHTMLEntity(SegmentedString& source, StringBuilder& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter) argument
128 return consumeCharacterReference<HTMLEntityParser>(source, decodedEntity, notEnoughCharacters, additionalAllowedCharacter);
H A DHTMLTokenizer.cpp164 StringBuilder decodedEntity; local
165 bool success = consumeHTMLEntity(source, decodedEntity, notEnoughCharacters);
169 ASSERT(decodedEntity.isEmpty());
172 for (unsigned i = 0; i < decodedEntity.length(); ++i)
173 bufferCharacter(decodedEntity[i]);
1014 StringBuilder decodedEntity; local
1015 bool success = consumeHTMLEntity(source, decodedEntity, notEnoughCharacters, m_additionalAllowedCharacter);
1019 ASSERT(decodedEntity.isEmpty());
1022 for (unsigned i = 0; i < decodedEntity.length(); ++i)
1023 m_token->appendToAttributeValue(decodedEntity[
[all...]

Completed in 194 milliseconds