• Home
  • Raw
  • Download

Lines Matching refs:Lexer

22 void Token::dump(const Lexer &L, const SourceManager &SM) const {  in dump()
58 StringRef Lexer::resolveHTMLNamedCharacterReference(StringRef Name) const { in resolveHTMLNamedCharacterReference()
70 StringRef Lexer::resolveHTMLDecimalCharacterReference(StringRef Name) const { in resolveHTMLDecimalCharacterReference()
80 StringRef Lexer::resolveHTMLHexCharacterReference(StringRef Name) const { in resolveHTMLHexCharacterReference()
91 void Lexer::skipLineStartingDecorations() { in skipLineStartingDecorations()
280 void Lexer::formTokenWithChars(Token &Result, const char *TokEnd, in formTokenWithChars()
293 void Lexer::lexCommentText(Token &T) { in lexCommentText()
449 void Lexer::setupAndLexVerbatimBlock(Token &T, in setupAndLexVerbatimBlock()
474 void Lexer::lexVerbatimBlockFirstLine(Token &T) { in lexVerbatimBlockFirstLine()
519 void Lexer::lexVerbatimBlockBody(Token &T) { in lexVerbatimBlockBody()
534 void Lexer::setupAndLexVerbatimLine(Token &T, const char *TextBegin, in setupAndLexVerbatimLine()
543 void Lexer::lexVerbatimLineText(Token &T) { in lexVerbatimLineText()
555 void Lexer::lexHTMLCharacterReference(Token &T) { in lexHTMLCharacterReference()
617 void Lexer::setupAndLexHTMLStartTag(Token &T) { in setupAndLexHTMLStartTag()
638 void Lexer::lexHTMLStartTag(Token &T) { in lexHTMLStartTag()
700 void Lexer::setupAndLexHTMLEndTag(Token &T) { in setupAndLexHTMLEndTag()
720 void Lexer::lexHTMLEndTag(Token &T) { in lexHTMLEndTag()
727 Lexer::Lexer(llvm::BumpPtrAllocator &Allocator, DiagnosticsEngine &Diags, in Lexer() function in clang::comments::Lexer
737 void Lexer::lex(Token &T) { in lex()
839 StringRef Lexer::getSpelling(const Token &Tok, in getSpelling()