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:
324 StringRef ParamCommandComment::getParamName(const FullComment *FC) const {
ASTDumper.cpp 553 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 101 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin,
106 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
111 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
116 void actOnParamCommandFinish(ParamCommandComment *Command,
CommentParser.h 94 void parseParamCommandArgs(ParamCommandComment *PC,
Comment.h 153 friend class ParamCommandComment;
157 /// Parameter passing direction, see ParamCommandComment::PassDirection.
717 class ParamCommandComment : public BlockCommandComment {
728 ParamCommandComment(SourceLocation LocBegin,
  /external/clang/lib/Index/
CommentToXML.cpp 32 bool operator()(const ParamCommandComment *LHS,
33 const ParamCommandComment *RHS) const {
91 SmallVector<const ParamCommandComment *, 8> Params;
144 const ParamCommandComment *PCC = cast<ParamCommandComment>(Child);
239 void visitParamCommandComment(const ParamCommandComment *C);
352 const ParamCommandComment *C) {
554 void visitParamCommandComment(const ParamCommandComment *C);
742 const ParamCommandComment *C) {
758 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 457 milliseconds