Home
last modified time | relevance | path

Searched refs:FullComment (Results 1 – 16 of 16) sorted by relevance

/external/clang/unittests/AST/
DCommentParser.cpp53 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/
DCommentToXML.h20 class FullComment; variable
35 void convertCommentToHTML(const comments::FullComment *FC,
43 void convertCommentToXML(const comments::FullComment *FC,
/external/clang/lib/Index/
DCommentToXML.cpp84 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/
DCXComment.cpp40 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/
DRawCommentList.h25 class FullComment; variable
122 comments::FullComment *parse(const ASTContext &Context,
DCommentSema.h183 FullComment *actOnFullComment(ArrayRef<BlockContentComment *> Blocks);
203 void resolveParamCommandIndexes(const FullComment *FC);
DComment.h30 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
DCommentParser.h116 FullComment *parseFullComment();
DASTContext.h78 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/
DCommentNodes.td26 def FullComment : Comment;
/external/clang/lib/AST/
DComment.cpp324 StringRef ParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
331 StringRef TParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
DASTDumper.cpp120 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()
DCommentSema.cpp544 FullComment *Sema::actOnFullComment( in actOnFullComment()
546 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment()
711 void Sema::resolveParamCommandIndexes(const FullComment *FC) { in resolveParamCommandIndexes()
DRawCommentList.cpp202 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse()
DASTContext.cpp421 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 …]
DCommentParser.cpp759 FullComment *Parser::parseFullComment() { in parseFullComment()