Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentLexer.h39 at_command, // Command with an ID, that used 'at' 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()
404 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseInlineCommand()
571 case tok::at_command: { in parseParagraphOrBlockCommand()
581 << Tok.is(tok::at_command) in parseParagraphOrBlockCommand()
732 case tok::at_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()