Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCommentLexer.h38 at_command, // Command with an ID, that used 'at' 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-13.1/contrib/llvm-project/clang/lib/AST/
H A DCommentParser.cpp311 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseBlockCommand()
403 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseInlineCommand()
428 << CommandTok.is(tok::at_command) in parseInlineCommand()
576 case tok::at_command: { in parseParagraphOrBlockCommand()
586 << Tok.is(tok::at_command) in parseParagraphOrBlockCommand()
737 case tok::at_command: in parseBlockContent()
H A DCommentBriefParser.cpp79 if (Tok.is(tok::backslash_command) || Tok.is(tok::at_command)) { in Parse()
H A DCommentLexer.cpp359 (*TokenPtr == '@') ? tok::at_command : tok::backslash_command; in lexCommentText()