Searched refs:FullComment (Results 1 – 16 of 16) 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() 670 FullComment *FC = parseString(Sources[i]); in TEST_F() 684 FullComment *FC = parseString(Source); in TEST_F() 701 FullComment *FC = parseString(Source); in TEST_F() 728 FullComment *FC = parseString(Source); in TEST_F() [all …]
|
/external/clang/include/clang/Index/ |
D | CommentToXML.h | 20 class FullComment; variable 35 void convertCommentToHTML(const comments::FullComment *FC, 43 void convertCommentToXML(const comments::FullComment *FC,
|
/external/clang/lib/Index/ |
D | CommentToXML.cpp | 84 FullCommentParts(const FullComment *C, 97 FullCommentParts::FullCommentParts(const FullComment *C, in FullCommentParts() 224 CommentASTToHTMLConverter(const FullComment *FC, in CommentASTToHTMLConverter() 245 void visitFullComment(const FullComment *C); 256 const FullComment *FC; 441 void CommentASTToHTMLConverter::visitFullComment(const FullComment *C) { in visitFullComment() 531 CommentASTToXMLConverter(const FullComment *FC, in CommentASTToXMLConverter() 560 void visitFullComment(const FullComment *C); 570 const FullComment *FC; 822 void CommentASTToXMLConverter::visitFullComment(const FullComment *C) { in visitFullComment() [all …]
|
/external/clang/tools/libclang/ |
D | CXComment.cpp | 40 const FullComment *FC = Context.getCommentForDecl(D, /*PP=*/nullptr); in clang_Cursor_getParsedComment() 381 const FullComment *FC = getASTNodeAs<FullComment>(CXC); in clang_FullComment_getAsHTML() 396 const FullComment *FC = getASTNodeAs<FullComment>(CXC); in clang_FullComment_getAsXML()
|
/external/clang/include/clang/AST/ |
D | RawCommentList.h | 25 class FullComment; variable 122 comments::FullComment *parse(const ASTContext &Context,
|
D | CommentSema.h | 183 FullComment *actOnFullComment(ArrayRef<BlockContentComment *> Blocks); 203 void resolveParamCommandIndexes(const FullComment *FC);
|
D | Comment.h | 30 class FullComment; variable 768 StringRef getParamName(const FullComment *FC) const; 838 StringRef getParamName(const FullComment *FC) const; 1097 class FullComment : public Comment { 1102 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) : in FullComment() function
|
D | CommentParser.h | 116 FullComment *parseFullComment();
|
D | ASTContext.h | 78 class FullComment; variable 685 mutable llvm::DenseMap<const Decl *, comments::FullComment *> ParsedComments; 716 comments::FullComment *getCommentForDecl(const Decl *D, 722 comments::FullComment *getLocalCommentForDeclUncached(const Decl *D) const; 724 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 | 324 StringRef ParamCommandComment::getParamName(const FullComment *FC) const { in getParamName() 331 StringRef TParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
|
D | ASTDumper.cpp | 120 const FullComment *FC; 141 const FullComment *OrigFC = FC; in dumpChild() 218 void dumpFullComment(const FullComment *C); 1059 if (const FullComment *Comment = in dumpDecl() 2314 void ASTDumper::dumpFullComment(const FullComment *C) { in dumpFullComment() 2536 const FullComment *FC = dyn_cast<FullComment>(this); in dump() 2542 const FullComment *FC = dyn_cast<FullComment>(this); in dumpColor()
|
D | CommentSema.cpp | 544 FullComment *Sema::actOnFullComment( in actOnFullComment() 546 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment() 711 void Sema::resolveParamCommandIndexes(const FullComment *FC) { in resolveParamCommandIndexes()
|
D | RawCommentList.cpp | 202 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse()
|
D | ASTContext.cpp | 421 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC, in cloneFullComment() 430 comments::FullComment *CFC = in cloneFullComment() 431 new (*this) comments::FullComment(FC->getBlocks(), in cloneFullComment() 436 comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const { in getLocalCommentForDeclUncached() 441 comments::FullComment *ASTContext::getCommentForDecl( in getCommentForDecl() 449 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos = in getCommentForDecl() 454 comments::FullComment *FC = Pos->second; in getCommentForDecl() 455 comments::FullComment *CFC = cloneFullComment(FC, D); in getCommentForDecl() 470 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP)) in getCommentForDecl() 476 if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP)) in getCommentForDecl() [all …]
|
D | CommentParser.cpp | 759 FullComment *Parser::parseFullComment() { in parseFullComment()
|