Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/include/clang/Index/
HDCommentToXML.h20 class FullComment; variable
35 void convertCommentToHTML(const comments::FullComment *FC,
43 void convertCommentToXML(const comments::FullComment *FC,
/NextBSD/contrib/llvm/tools/clang/lib/Index/
HDCommentToXML.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()
532 CommentASTToXMLConverter(const FullComment *FC, in CommentASTToXMLConverter()
561 void visitFullComment(const FullComment *C);
571 const FullComment *FC;
824 void CommentASTToXMLConverter::visitFullComment(const FullComment *C) { in visitFullComment()
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDRawCommentList.h25 class FullComment; variable
122 comments::FullComment *parse(const ASTContext &Context,
HDCommentSema.h187 FullComment *actOnFullComment(ArrayRef<BlockContentComment *> Blocks);
207 void resolveParamCommandIndexes(const FullComment *FC);
HDComment.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
HDCommentParser.h116 FullComment *parseFullComment();
HDASTContext.h75 class FullComment; variable
614 mutable llvm::DenseMap<const Decl *, comments::FullComment *> ParsedComments;
645 comments::FullComment *getCommentForDecl(const Decl *D,
651 comments::FullComment *getLocalCommentForDeclUncached(const Decl *D) const;
653 comments::FullComment *cloneFullComment(comments::FullComment *FC,
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDCommentNodes.td26 def FullComment : Comment;
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDComment.cpp324 StringRef ParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
331 StringRef TParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
HDASTDumper.cpp117 const FullComment *FC;
138 const FullComment *OrigFC = FC; in dumpChild()
215 void dumpFullComment(const FullComment *C);
1026 if (const FullComment *Comment = in dumpDecl()
2152 void ASTDumper::dumpFullComment(const FullComment *C) { in dumpFullComment()
2374 const FullComment *FC = dyn_cast<FullComment>(this); in dump()
2380 const FullComment *FC = dyn_cast<FullComment>(this); in dumpColor()
HDCommentSema.cpp546 FullComment *Sema::actOnFullComment( in actOnFullComment()
548 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment()
713 void Sema::resolveParamCommandIndexes(const FullComment *FC) { in resolveParamCommandIndexes()
HDRawCommentList.cpp143 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse()
HDASTContext.cpp418 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC, in cloneFullComment()
427 comments::FullComment *CFC = in cloneFullComment()
428 new (*this) comments::FullComment(FC->getBlocks(), in cloneFullComment()
434 comments::FullComment *ASTContext::getLocalCommentForDeclUncached(const Decl *D) const { in getLocalCommentForDeclUncached()
439 comments::FullComment *ASTContext::getCommentForDecl( in getCommentForDecl()
447 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos = in getCommentForDecl()
452 comments::FullComment *FC = Pos->second; in getCommentForDecl()
453 comments::FullComment *CFC = cloneFullComment(FC, D); in getCommentForDecl()
468 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP)) in getCommentForDecl()
474 if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP)) in getCommentForDecl()
[all …]
HDCommentParser.cpp759 FullComment *Parser::parseFullComment() { in parseFullComment()