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

  /external/clang/tools/libclang/
CXComment.cpp 262 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
270 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
278 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
280 return ParamCommandComment::InvalidParamIndex;
286 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC);
295 const ParamCommandComment *PCC = getASTNodeAs<ParamCommandComment>(CXC)
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 80 ParamCommandComment *Sema::actOnParamCommandStart(
85 ParamCommandComment *Command =
86 new (Allocator) ParamCommandComment(LocBegin, LocEnd, CommandID,
222 .Case("[in]", ParamCommandComment::In)
223 .Case("[out]", ParamCommandComment::Out)
224 .Cases("[in,out]", "[out,in]", ParamCommandComment::InOut)
228 void Sema::actOnParamCommandDirectionArg(ParamCommandComment *Command,
244 const char *FixedName = ParamCommandComment::getDirectionAsString(
245 (ParamCommandComment::PassDirection)Direction);
250 Direction = ParamCommandComment::In; // Sane fall back
    [all...]
Comment.cpp 117 const char *ParamCommandComment::getDirectionAsString(PassDirection D) {
119 case ParamCommandComment::In:
121 case ParamCommandComment::Out:
123 case ParamCommandComment::InOut:
331 StringRef ParamCommandComment::getParamName(const FullComment *FC) const {
ASTDumper.cpp 369 void visitParamCommandComment(const ParamCommandComment *C);
    [all...]
CommentParser.cpp 265 void Parser::parseParamCommandArgs(ParamCommandComment *PC,
314 ParamCommandComment *PC = nullptr;
  /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 98 void parseParamCommandArgs(ParamCommandComment *PC,
Comment.h 151 friend class ParamCommandComment;
155 /// Parameter passing direction, see ParamCommandComment::PassDirection.
715 class ParamCommandComment : public BlockCommandComment {
726 ParamCommandComment(SourceLocation LocBegin,
  /external/clang/lib/Index/
CommentToXML.cpp 33 bool operator()(const ParamCommandComment *LHS,
34 const ParamCommandComment *RHS) const {
92 SmallVector<const ParamCommandComment *, 8> Params;
145 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child);
240 void visitParamCommandComment(const ParamCommandComment *C);
353 const ParamCommandComment *C) {
556 void visitParamCommandComment(const ParamCommandComment *C);
749 const ParamCommandComment *C) {
765 case ParamCommandComment::In
    [all...]
  /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()
759 ParamCommandComment *PCC;
762 ParamCommandComment::In,
778 ParamCommandComment *PCC
    [all...]

Completed in 454 milliseconds