HomeSort by relevance Sort by last modified time
    Searched refs:ParamCommandComment (Results 1 - 9 of 9) sorted by null

  /external/clang/tools/libclang/
CXComment.cpp 254 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
262 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
270 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
272 return ParamCommandComment::InvalidParamIndex;
278 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
287 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC)
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 75 ParamCommandComment *Sema::actOnParamCommandStart(
80 ParamCommandComment *Command =
81 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID,
213 void Sema::actOnParamCommandDirectionArg(ParamCommandComment *Command,
217 ParamCommandComment::PassDirection Direction;
222 Direction = ParamCommandComment::In;
224 Direction = ParamCommandComment::Out;
226 Direction = ParamCommandComment::InOut;
241 Direction = ParamCommandComment::In;
244 Direction = ParamCommandComment::Out
    [all...]
Comment.cpp 116 const char *ParamCommandComment::getDirectionAsString(PassDirection D) {
118 case ParamCommandComment::In:
120 case ParamCommandComment::Out:
122 case ParamCommandComment::InOut:
294 StringRef ParamCommandComment::getParamName(const FullComment *FC) const {
CommentParser.cpp 256 void Parser::parseParamCommandArgs(ParamCommandComment *PC,
305 ParamCommandComment *PC = 0;
ASTDumper.cpp 308 void visitParamCommandComment(const ParamCommandComment *C);
    [all...]
  /external/clang/include/clang/AST/
CommentSema.h 105 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin,
110 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
115 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
120 void actOnParamCommandFinish(ParamCommandComment *Command,
CommentParser.h 100 void parseParamCommandArgs(ParamCommandComment *PC,
Comment.h 141 friend class ParamCommandComment;
145 /// Parameter passing direction, see ParamCommandComment::PassDirection.
696 class ParamCommandComment : public BlockCommandComment {
707 ParamCommandComment(SourceLocation LocBegin,
  /external/clang/unittests/AST/
CommentParser.cpp 185 ParamCommandComment *&PCC,
187 ParamCommandComment::PassDirection Direction,
198 << "ParamCommandComment has name \"" << ActualCommandName.str() << "\", "
203 << "ParamCommandComment has direction " << PCC->getDirection() << ", "
208 << "ParamCommandComment has "
215 << "ParamCommandComment has no parameter name";
220 << "ParamCommandComment has parameter name \"" << ActualParamName.str()
734 ParamCommandComment *PCC;
737 ParamCommandComment::In,
753 ParamCommandComment *PCC
    [all...]

Completed in 189 milliseconds