Home
last modified time | relevance | path

Searched refs:formTokenWithChars (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp269 void Lexer::formTokenWithChars(Token &Result, const char *TokEnd, in formTokenWithChars() function in clang::comments::Lexer
319 formTokenWithChars(T, TokenPtr, tok::newline); in lexCommentText()
384 formTokenWithChars(T, TokenPtr, tok::text); in lexCommentText()
423 formTokenWithChars(T, TokenPtr, tok::unknown_command); in lexCommentText()
438 formTokenWithChars(T, TokenPtr, CommandKind); in lexCommentText()
477 formTokenWithChars(T, TextBegin, tok::verbatim_block_begin); in setupAndLexVerbatimBlock()
516 formTokenWithChars(T, End, tok::verbatim_block_end); in lexVerbatimBlockFirstLine()
532 formTokenWithChars(T, NextLine, tok::verbatim_block_line); in lexVerbatimBlockFirstLine()
545 formTokenWithChars(T, BufferPtr, tok::verbatim_block_line); in lexVerbatimBlockBody()
556 formTokenWithChars(T, TextBegin, tok::verbatim_line_name); in setupAndLexVerbatimLine()
[all …]
H A DCommentParser.cpp155 void formTokenWithChars(Token &Result, in formTokenWithChars() function in clang::comments::TextTokenRetokenizer
221 formTokenWithChars(Tok, Loc, WordBegin, Length, Text); in lexType()
278 formTokenWithChars(Tok, Loc, WordBegin, Length, Text); in lexParHeading()
312 formTokenWithChars(Tok, Loc, WordBegin, Length, Text); in lexWord()
357 formTokenWithChars(Tok, Loc, WordBegin, in lexDelimitedSeq()
370 formTokenWithChars(PartialTok, getSourceLocation(), in putBackLeftoverTokens()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentLexer.h299 void formTokenWithChars(Token &Result, const char *TokEnd,
304 formTokenWithChars(Result, TokEnd, tok::text); in formTextToken()