Home
last modified time | relevance | path

Searched refs:backslash_command (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentLexer.h37 backslash_command, // Command with an ID, that used backslash marker. enumerator
121 assert(is(tok::backslash_command) || is(tok::at_command)); in getCommandID()
126 assert(is(tok::backslash_command) || is(tok::at_command)); in setCommandID()
H A DCommentParser.h83 return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) && in isTokBlockCommand()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentParser.cpp473 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseBlockCommand()
480 Tok.is(tok::backslash_command) ? CMK_Backslash : CMK_At; in parseBlockCommand()
571 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseInlineCommand()
731 case tok::backslash_command: in parseParagraphOrBlockCommand()
891 case tok::backslash_command: in parseBlockContent()
H A DCommentBriefParser.cpp70 if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) { in Parse()
H A DCommentLexer.cpp354 (*TokenPtr == '@') ? tok::at_command : tok::backslash_command; in lexCommentText()