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

/external/clang/tools/libclang/
H A DCXComment.cpp262 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 *PC
[all...]
/external/clang/lib/AST/
H A DCommentSema.cpp80 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
[all...]
H A DComment.cpp117 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 {
H A DASTDumper.cpp369 void visitParamCommandComment(const ParamCommandComment *C);
2093 void ASTDumper::visitParamCommandComment(const ParamCommandComment *C) {
2094 OS << " " << ParamCommandComment::getDirectionAsString(C->getDirection());
H A DCommentParser.cpp265 void Parser::parseParamCommandArgs(ParamCommandComment *PC,
314 ParamCommandComment *PC = nullptr;
/external/clang/include/clang/AST/
H A DCommentSema.h105 ParamCommandComment *actOnParamCommandStart(SourceLocation LocBegin,
110 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
115 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
120 void actOnParamCommandFinish(ParamCommandComment *Command,
H A DCommentParser.h98 void parseParamCommandArgs(ParamCommandComment *PC,
H A DComment.h151 friend class ParamCommandComment;
155 /// Parameter passing direction, see ParamCommandComment::PassDirection.
715 class ParamCommandComment : public BlockCommandComment { class in namespace:clang::comments
726 ParamCommandComment(SourceLocation LocBegin, function
/external/clang/lib/Index/
H A DCommentToXML.cpp33 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
[all...]
/external/clang/unittests/AST/
H A DCommentParser.cpp185 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 *PC
[all...]

Completed in 187 milliseconds