Home | History | Annotate | Download | only in parser

Lines Matching refs:SegmentedString

65 inline void advanceStringAndASSERTIgnoringCase(SegmentedString& source, const char* expectedCharacters)
71 inline void advanceStringAndASSERT(SegmentedString& source, const char* expectedCharacters)
128 inline bool HTMLTokenizer::processEntity(SegmentedString& source)
199 bool HTMLTokenizer::emitAndResumeIn(SegmentedString& source, State state)
208 bool HTMLTokenizer::emitAndReconsumeIn(SegmentedString&, State state)
217 bool HTMLTokenizer::emitEndOfFile(SegmentedString& source)
228 bool HTMLTokenizer::flushBufferedEndTag(SegmentedString& source)
251 bool HTMLTokenizer::flushEmitAndResumeIn(SegmentedString& source, State state)
258 bool HTMLTokenizer::nextToken(SegmentedString& source, HTMLToken& token)
1138 SegmentedString::LookAheadResult result = source.lookAhead(dashDashString);
1139 if (result == SegmentedString::DidMatch) {
1144 } else if (result == SegmentedString::NotEnoughCharacters)
1147 SegmentedString::LookAheadResult result = source.lookAheadIgnoringCase(doctypeString);
1148 if (result == SegmentedString::DidMatch) {
1151 } else if (result == SegmentedString::NotEnoughCharacters)
1154 SegmentedString::LookAheadResult result = source.lookAhead(cdataString);
1155 if (result == SegmentedString::DidMatch) {
1158 } else if (result == SegmentedString::NotEnoughCharacters)
1340 SegmentedString::LookAheadResult result = source.lookAheadIgnoringCase(publicString);
1341 if (result == SegmentedString::DidMatch) {
1344 } else if (result == SegmentedString::NotEnoughCharacters)
1347 SegmentedString
1348 if (result == SegmentedString::DidMatch) {
1351 } else if (result == SegmentedString::NotEnoughCharacters)