Home
last modified time | relevance | path

Searched refs:ParamCommandComment (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDCommentSema.cpp80 ParamCommandComment *Sema::actOnParamCommandStart( in actOnParamCommandStart()
85 ParamCommandComment *Command = in actOnParamCommandStart()
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID, in actOnParamCommandStart()
222 .Case("[in]", ParamCommandComment::In) in getParamPassDirection()
223 .Case("[out]", ParamCommandComment::Out) in getParamPassDirection()
224 .Cases("[in,out]", "[out,in]", ParamCommandComment::InOut) in getParamPassDirection()
228 void Sema::actOnParamCommandDirectionArg(ParamCommandComment *Command, in actOnParamCommandDirectionArg()
244 const char *FixedName = ParamCommandComment::getDirectionAsString( in actOnParamCommandDirectionArg()
245 (ParamCommandComment::PassDirection)Direction); in actOnParamCommandDirectionArg()
250 Direction = ParamCommandComment::In; // Sane fall back. in actOnParamCommandDirectionArg()
[all …]
HDComment.cpp117 const char *ParamCommandComment::getDirectionAsString(PassDirection D) { in getDirectionAsString()
119 case ParamCommandComment::In: in getDirectionAsString()
121 case ParamCommandComment::Out: in getDirectionAsString()
123 case ParamCommandComment::InOut: in getDirectionAsString()
324 StringRef ParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
HDCommentParser.cpp265 void Parser::parseParamCommandArgs(ParamCommandComment *PC, in parseParamCommandArgs()
314 ParamCommandComment *PC = nullptr; in parseBlockCommand()
HDASTDumper.cpp551 void visitParamCommandComment(const ParamCommandComment *C);
2230 void ASTDumper::visitParamCommandComment(const ParamCommandComment *C) { in visitParamCommandComment()
2231 OS << " " << ParamCommandComment::getDirectionAsString(C->getDirection()); in visitParamCommandComment()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDCommentSema.h105 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin,
110 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
115 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
120 void actOnParamCommandFinish(ParamCommandComment *Command,
HDCommentParser.h94 void parseParamCommandArgs(ParamCommandComment *PC,
HDComment.h153 friend class ParamCommandComment; variable
717 class ParamCommandComment : public BlockCommandComment {
728 ParamCommandComment(SourceLocation LocBegin, in ParamCommandComment() function
/NextBSD/contrib/llvm/tools/clang/lib/Index/
HDCommentToXML.cpp32 bool operator()(const ParamCommandComment *LHS, in operator ()()
33 const ParamCommandComment *RHS) const { in operator ()()
91 SmallVector<const ParamCommandComment *, 8> Params;
144 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child); in FullCommentParts()
239 void visitParamCommandComment(const ParamCommandComment *C);
352 const ParamCommandComment *C) { in visitParamCommandComment()
555 void visitParamCommandComment(const ParamCommandComment *C);
743 const ParamCommandComment *C) { in visitParamCommandComment()
759 case ParamCommandComment::In: in visitParamCommandComment()
762 case ParamCommandComment::Out: in visitParamCommandComment()
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDCommentNodes.td19 def ParamCommandComment : DComment<BlockCommandComment>;