Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DCommentSema.cpp64 ParamCommandComment *Sema::actOnParamCommandStart(SourceLocation LocBegin, in actOnParamCommandStart()
67 ParamCommandComment *Command = in actOnParamCommandStart()
68 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID); in actOnParamCommandStart()
78 void Sema::actOnParamCommandDirectionArg(ParamCommandComment *Command, in actOnParamCommandDirectionArg()
82 ParamCommandComment::PassDirection Direction; in actOnParamCommandDirectionArg()
87 Direction = ParamCommandComment::In; in actOnParamCommandDirectionArg()
89 Direction = ParamCommandComment::Out; in actOnParamCommandDirectionArg()
91 Direction = ParamCommandComment::InOut; in actOnParamCommandDirectionArg()
106 Direction = ParamCommandComment::In; in actOnParamCommandDirectionArg()
109 Direction = ParamCommandComment::Out; in actOnParamCommandDirectionArg()
[all …]
DComment.cpp130 const char *ParamCommandComment::getDirectionAsString(PassDirection D) { in getDirectionAsString()
132 case ParamCommandComment::In: in getDirectionAsString()
134 case ParamCommandComment::Out: in getDirectionAsString()
136 case ParamCommandComment::InOut: in getDirectionAsString()
DCommentDumper.cpp55 void visitParamCommandComment(const ParamCommandComment *C);
175 void CommentDumper::visitParamCommandComment(const ParamCommandComment *C) { in visitParamCommandComment()
178 OS << " " << ParamCommandComment::getDirectionAsString(C->getDirection()); in visitParamCommandComment()
DCommentParser.cpp261 void Parser::parseParamCommandArgs(ParamCommandComment *PC, in parseParamCommandArgs()
310 ParamCommandComment *PC; in parseBlockCommand()
/external/clang/tools/libclang/
DCXComment.cpp253 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); in clang_ParamCommandComment_getParamName()
261 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); in clang_ParamCommandComment_isParamIndexValid()
269 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); in clang_ParamCommandComment_getParamIndex()
271 return ParamCommandComment::InvalidParamIndex; in clang_ParamCommandComment_getParamIndex()
277 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); in clang_ParamCommandComment_isDirectionExplicit()
286 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC); in clang_ParamCommandComment_getDirection()
291 case ParamCommandComment::In: in clang_ParamCommandComment_getDirection()
294 case ParamCommandComment::Out: in clang_ParamCommandComment_getDirection()
297 case ParamCommandComment::InOut: in clang_ParamCommandComment_getDirection()
364 bool operator()(const ParamCommandComment *LHS, in operator ()()
[all …]
/external/clang/include/clang/AST/
DCommentSema.h100 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin,
104 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
109 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
114 void actOnParamCommandFinish(ParamCommandComment *Command,
DCommentParser.h95 void parseParamCommandArgs(ParamCommandComment *PC,
DComment.h116 friend class ParamCommandComment; variable
681 class ParamCommandComment : public BlockCommandComment {
689 ParamCommandComment(SourceLocation LocBegin, in ParamCommandComment() function
703 static bool classof(const ParamCommandComment *) { return true; } in classof() argument
/external/clang/unittests/AST/
DCommentParser.cpp184 ParamCommandComment *&PCC, in HasParamCommandAt()
186 ParamCommandComment::PassDirection Direction, in HasParamCommandAt()
733 ParamCommandComment *PCC; in TEST_F()
736 ParamCommandComment::In, in TEST_F()
752 ParamCommandComment *PCC; in TEST_F()
755 ParamCommandComment::In, in TEST_F()
786 ParamCommandComment *PCC; in TEST_F()
789 ParamCommandComment::In, in TEST_F()
816 ParamCommandComment *PCC; in TEST_F()
819 ParamCommandComment::In, in TEST_F()
[all …]
/external/clang/include/clang/Basic/
DCommentNodes.td19 def ParamCommandComment : DComment<BlockCommandComment>;