Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentLexer.h38 backslash_command, // Command with an ID, that used backslash marker. enumerator
122 assert(is(tok::backslash_command) || is(tok::at_command)); in getCommandID()
127 assert(is(tok::backslash_command) || is(tok::at_command)); in setCommandID()
H A DCommentParser.h84 return (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) && in isTokBlockCommand()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DCommentParser.cpp312 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseBlockCommand()
319 Tok.is(tok::backslash_command) ? CMK_Backslash : CMK_At; in parseBlockCommand()
404 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseInlineCommand()
570 case tok::backslash_command: in parseParagraphOrBlockCommand()
731 case tok::backslash_command: in parseBlockContent()
H A DCommentBriefParser.cpp80 if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) { in Parse()
H A DCommentLexer.cpp360 (*TokenPtr == '@') ? tok::at_command : tok::backslash_command; in lexCommentText()