Lines Matching refs:Lexer

21 void Token::dump(const Lexer &L, const SourceManager &SM) const {  in dump()
57 StringRef Lexer::resolveHTMLNamedCharacterReference(StringRef Name) const { in resolveHTMLNamedCharacterReference()
69 StringRef Lexer::resolveHTMLDecimalCharacterReference(StringRef Name) const { in resolveHTMLDecimalCharacterReference()
79 StringRef Lexer::resolveHTMLHexCharacterReference(StringRef Name) const { in resolveHTMLHexCharacterReference()
90 void Lexer::skipLineStartingDecorations() { in skipLineStartingDecorations()
279 void Lexer::formTokenWithChars(Token &Result, const char *TokEnd, in formTokenWithChars()
292 void Lexer::lexCommentText(Token &T) { in lexCommentText()
463 void Lexer::setupAndLexVerbatimBlock(Token &T, in setupAndLexVerbatimBlock()
488 void Lexer::lexVerbatimBlockFirstLine(Token &T) { in lexVerbatimBlockFirstLine()
533 void Lexer::lexVerbatimBlockBody(Token &T) { in lexVerbatimBlockBody()
548 void Lexer::setupAndLexVerbatimLine(Token &T, const char *TextBegin, in setupAndLexVerbatimLine()
557 void Lexer::lexVerbatimLineText(Token &T) { in lexVerbatimLineText()
569 void Lexer::lexHTMLCharacterReference(Token &T) { in lexHTMLCharacterReference()
631 void Lexer::setupAndLexHTMLStartTag(Token &T) { in setupAndLexHTMLStartTag()
652 void Lexer::lexHTMLStartTag(Token &T) { in lexHTMLStartTag()
714 void Lexer::setupAndLexHTMLEndTag(Token &T) { in setupAndLexHTMLEndTag()
734 void Lexer::lexHTMLEndTag(Token &T) { in lexHTMLEndTag()
741 Lexer::Lexer(llvm::BumpPtrAllocator &Allocator, DiagnosticsEngine &Diags, in Lexer() function in clang::comments::Lexer
749 void Lexer::lex(Token &T) { in lex()
851 StringRef Lexer::getSpelling(const Token &Tok, in getSpelling()