Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DCommentParser.cpp308 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseBlockCommand()
400 assert(Tok.is(tok::backslash_command) || Tok.is(tok::at_command)); in parseInlineCommand()
417 << CommandTok.is(tok::at_command) << Info->Name << Args.size() in parseInlineCommand()
561 case tok::at_command: { in parseParagraphOrBlockCommand()
571 << Tok.is(tok::at_command) in parseParagraphOrBlockCommand()
721 case tok::at_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()