• Home
  • Raw
  • Download

Lines Matching refs:Lexer

13 void Token::dump(const Lexer &L, const SourceManager &SM) const {  in dump()
49 StringRef Lexer::resolveHTMLNamedCharacterReference(StringRef Name) const { in resolveHTMLNamedCharacterReference()
61 StringRef Lexer::resolveHTMLDecimalCharacterReference(StringRef Name) const { in resolveHTMLDecimalCharacterReference()
71 StringRef Lexer::resolveHTMLHexCharacterReference(StringRef Name) const { in resolveHTMLHexCharacterReference()
82 void Lexer::skipLineStartingDecorations() { in skipLineStartingDecorations()
271 void Lexer::formTokenWithChars(Token &Result, const char *TokEnd, in formTokenWithChars()
284 void Lexer::lexCommentText(Token &T) { in lexCommentText()
441 void Lexer::setupAndLexVerbatimBlock(Token &T, in setupAndLexVerbatimBlock()
466 void Lexer::lexVerbatimBlockFirstLine(Token &T) { in lexVerbatimBlockFirstLine()
511 void Lexer::lexVerbatimBlockBody(Token &T) { in lexVerbatimBlockBody()
526 void Lexer::setupAndLexVerbatimLine(Token &T, const char *TextBegin, in setupAndLexVerbatimLine()
535 void Lexer::lexVerbatimLineText(Token &T) { in lexVerbatimLineText()
547 void Lexer::lexHTMLCharacterReference(Token &T) { in lexHTMLCharacterReference()
610 void Lexer::setupAndLexHTMLStartTag(Token &T) { in setupAndLexHTMLStartTag()
631 void Lexer::lexHTMLStartTag(Token &T) { in lexHTMLStartTag()
693 void Lexer::setupAndLexHTMLEndTag(Token &T) { in setupAndLexHTMLEndTag()
713 void Lexer::lexHTMLEndTag(Token &T) { in lexHTMLEndTag()
720 Lexer::Lexer(llvm::BumpPtrAllocator &Allocator, DiagnosticsEngine &Diags, in Lexer() function in clang::comments::Lexer
730 void Lexer::lex(Token &T) { in lex()
832 StringRef Lexer::getSpelling(const Token &Tok, in getSpelling()