Searched refs:ParamCommandComment (Results 1 – 10 of 10) sorted by relevance
/external/clang/lib/AST/ |
D | CommentSema.cpp | 64 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 …]
|
D | Comment.cpp | 130 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()
|
D | CommentDumper.cpp | 55 void visitParamCommandComment(const ParamCommandComment *C); 175 void CommentDumper::visitParamCommandComment(const ParamCommandComment *C) { in visitParamCommandComment() 178 OS << " " << ParamCommandComment::getDirectionAsString(C->getDirection()); in visitParamCommandComment()
|
D | CommentParser.cpp | 261 void Parser::parseParamCommandArgs(ParamCommandComment *PC, in parseParamCommandArgs() 310 ParamCommandComment *PC; in parseBlockCommand()
|
/external/clang/tools/libclang/ |
D | CXComment.cpp | 253 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/ |
D | CommentSema.h | 100 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin, 104 void actOnParamCommandDirectionArg(ParamCommandComment *Command, 109 void actOnParamCommandParamNameArg(ParamCommandComment *Command, 114 void actOnParamCommandFinish(ParamCommandComment *Command,
|
D | CommentParser.h | 95 void parseParamCommandArgs(ParamCommandComment *PC,
|
D | Comment.h | 116 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/ |
D | CommentParser.cpp | 184 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/ |
D | CommentNodes.td | 19 def ParamCommandComment : DComment<BlockCommandComment>;
|