Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/clang/unittests/AST/
H A DCommentParser.cpp65 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()
684 FullComment *FC = parseString(Source); in TEST_F()
701 FullComment *FC = parseString(Source); in TEST_F()
728 FullComment *FC = parseString(Source); in TEST_F()
754 FullComment *FC = parseString(Source); in TEST_F()
773 FullComment *FC = parseString(Source); in TEST_F()
919 FullComment *FC = parseString(Source); in TEST_F()
[all …]
/minix/external/bsd/llvm/dist/clang/include/clang/Index/
H A DCommentToXML.h20 class FullComment; variable
35 void convertCommentToHTML(const comments::FullComment *FC,
43 void convertCommentToXML(const comments::FullComment *FC,
/minix/external/bsd/llvm/dist/clang/lib/Index/
H A 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()
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 …]
/minix/external/bsd/llvm/dist/clang/tools/libclang/
H A 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()
/minix/external/bsd/llvm/dist/clang/include/clang/AST/
H A DRawCommentList.h25 class FullComment; variable
122 comments::FullComment *parse(const ASTContext &Context,
H A DCommentSema.h187 FullComment *actOnFullComment(ArrayRef<BlockContentComment *> Blocks);
207 void resolveParamCommandIndexes(const FullComment *FC);
H A 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
H A DCommentParser.h120 FullComment *parseFullComment();
H A DASTContext.h75 class FullComment; variable
602 mutable llvm::DenseMap<const Decl *, comments::FullComment *> ParsedComments;
633 comments::FullComment *getCommentForDecl(const Decl *D,
639 comments::FullComment *getLocalCommentForDeclUncached(const Decl *D) const;
641 comments::FullComment *cloneFullComment(comments::FullComment *FC,
/minix/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DCommentNodes.td26 def FullComment : Comment;
/minix/external/bsd/llvm/dist/clang/lib/AST/
H A DComment.cpp324 StringRef ParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
331 StringRef TParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
H A DASTDumper.cpp117 const FullComment *FC;
138 const FullComment *OrigFC = FC; in dumpChild()
215 void dumpFullComment(const FullComment *C);
1001 if (const FullComment *Comment = in dumpDecl()
2066 void ASTDumper::dumpFullComment(const FullComment *C) { in dumpFullComment()
2283 const FullComment *FC = dyn_cast<FullComment>(this); in dump()
2289 const FullComment *FC = dyn_cast<FullComment>(this); in dumpColor()
H A DCommentSema.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()
H A DRawCommentList.cpp143 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse()
H A DASTContext.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()
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()
483 if (comments::FullComment *FC = getCommentForDecl(TD, PP)) in getCommentForDecl()
489 if (comments::FullComment *FC = getCommentForDecl(IC, PP)) in getCommentForDecl()
495 if (comments::FullComment *FC = getCommentForDecl(IC, PP)) in getCommentForDecl()
[all …]
H A DCommentParser.cpp759 FullComment *Parser::parseFullComment() { in parseFullComment()