Searched refs:FullComment (Results 1 – 15 of 15) sorted by relevance
/external/clang/unittests/AST/ |
D | CommentParser.cpp | 53 FullComment *parseString(const char *Source); 56 FullComment *CommentParserTest::parseString(const char *Source) { in parseString() 65 FullComment *FC = P.parseFullComment(); in parseString() 600 FullComment *FC = parseString(Source); in TEST_F() 607 FullComment *FC = parseString(Source); in TEST_F() 618 FullComment *FC = parseString(Source); in TEST_F() 645 FullComment *FC = parseString(Sources[i]); in TEST_F() 659 FullComment *FC = parseString(Source); in TEST_F() 676 FullComment *FC = parseString(Source); in TEST_F() 703 FullComment *FC = parseString(Source); in TEST_F() [all …]
|
/external/clang/tools/libclang/ |
D | CXComment.cpp | 409 FullCommentParts(const FullComment *C, 421 FullCommentParts::FullCommentParts(const FullComment *C, in FullCommentParts() 544 CommentASTToHTMLConverter(const FullComment *FC, in CommentASTToHTMLConverter() 565 void visitFullComment(const FullComment *C); 576 const FullComment *FC; 753 void CommentASTToHTMLConverter::visitFullComment(const FullComment *C) { in visitFullComment() 849 const FullComment *FC = getASTNodeAs<FullComment>(CXC); in clang_FullComment_getAsHTML() 866 CommentASTToXMLConverter(const FullComment *FC, in CommentASTToXMLConverter() 895 void visitFullComment(const FullComment *C); 904 const FullComment *FC; [all …]
|
D | CIndex.cpp | 5951 const comments::FullComment *FC = Context.getCommentForDecl(D, /*PP=*/ NULL); in clang_Cursor_getParsedComment()
|
/external/clang/include/clang/AST/ |
D | RawCommentList.h | 24 class FullComment; variable 118 comments::FullComment *parse(const ASTContext &Context,
|
D | CommentSema.h | 190 FullComment *actOnFullComment(ArrayRef<BlockContentComment *> Blocks); 210 void resolveParamCommandIndexes(const FullComment *FC);
|
D | Comment.h | 30 class FullComment; variable 744 StringRef getParamName(const FullComment *FC) const; 803 StringRef getParamName(const FullComment *FC) const; 1062 class FullComment : public Comment { 1067 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) : in FullComment() function
|
D | CommentParser.h | 122 FullComment *parseFullComment();
|
D | ASTContext.h | 72 class FullComment; variable 550 mutable llvm::DenseMap<const Decl *, comments::FullComment *> ParsedComments; 581 comments::FullComment *getCommentForDecl(const Decl *D, 584 comments::FullComment *cloneFullComment(comments::FullComment *FC,
|
/external/clang/include/clang/Basic/ |
D | CommentNodes.td | 26 def FullComment : Comment;
|
/external/clang/lib/AST/ |
D | Comment.cpp | 294 StringRef ParamCommandComment::getParamName(const FullComment *FC) const { in getParamName() 299 StringRef TParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
|
D | ASTDumper.cpp | 103 const FullComment *FC; 156 void dumpFullComment(const FullComment *C); 1797 void ASTDumper::dumpFullComment(const FullComment *C) { in dumpFullComment() 1987 const FullComment *FC = dyn_cast<FullComment>(this); in dump() 1993 const FullComment *FC = dyn_cast<FullComment>(this); in dumpColor()
|
D | CommentSema.cpp | 542 FullComment *Sema::actOnFullComment( in actOnFullComment() 544 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment() 698 void Sema::resolveParamCommandIndexes(const FullComment *FC) { in resolveParamCommandIndexes()
|
D | RawCommentList.cpp | 161 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse()
|
D | ASTContext.cpp | 388 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC, in cloneFullComment() 395 comments::FullComment *CFC = in cloneFullComment() 396 new (*this) comments::FullComment(FC->getBlocks(), in cloneFullComment() 402 comments::FullComment *ASTContext::getCommentForDecl( in getCommentForDecl() 408 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos = in getCommentForDecl() 413 comments::FullComment *FC = Pos->second; in getCommentForDecl() 414 comments::FullComment *CFC = cloneFullComment(FC, D); in getCommentForDecl() 429 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP)) in getCommentForDecl() 435 if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP)) in getCommentForDecl() 444 if (comments::FullComment *FC = getCommentForDecl(TD, PP)) in getCommentForDecl() [all …]
|
D | CommentParser.cpp | 743 FullComment *Parser::parseFullComment() { in parseFullComment()
|