Home
last modified time | relevance | path

Searched refs:FullComment (Results 1 – 15 of 15) 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()
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/
DCXComment.cpp409 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 …]
DCIndex.cpp5951 const comments::FullComment *FC = Context.getCommentForDecl(D, /*PP=*/ NULL); in clang_Cursor_getParsedComment()
/external/clang/include/clang/AST/
DRawCommentList.h24 class FullComment; variable
118 comments::FullComment *parse(const ASTContext &Context,
DCommentSema.h190 FullComment *actOnFullComment(ArrayRef<BlockContentComment *> Blocks);
210 void resolveParamCommandIndexes(const FullComment *FC);
DComment.h30 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
DCommentParser.h122 FullComment *parseFullComment();
DASTContext.h72 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/
DCommentNodes.td26 def FullComment : Comment;
/external/clang/lib/AST/
DComment.cpp294 StringRef ParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
299 StringRef TParamCommandComment::getParamName(const FullComment *FC) const { in getParamName()
DASTDumper.cpp103 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()
DCommentSema.cpp542 FullComment *Sema::actOnFullComment( in actOnFullComment()
544 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment()
698 void Sema::resolveParamCommandIndexes(const FullComment *FC) { in resolveParamCommandIndexes()
DRawCommentList.cpp161 comments::FullComment *RawComment::parse(const ASTContext &Context, in parse()
DASTContext.cpp388 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 …]
DCommentParser.cpp743 FullComment *Parser::parseFullComment() { in parseFullComment()