HomeSort by relevance Sort by last modified time
    Searched refs:FullComment (Results 1 - 14 of 14) sorted by null

  /external/clang/unittests/AST/
CommentParser.cpp 53 FullComment *parseString(const char *Source);
56 FullComment *CommentParserTest::parseString(const char *Source) {
65 FullComment *FC = P.parseFullComment();
600 FullComment *FC = parseString(Source);
607 FullComment *FC = parseString(Source);
618 FullComment *FC = parseString(Source);
645 FullComment *FC = parseString(Sources[i]);
659 FullComment *FC = parseString(Source);
676 FullComment *FC = parseString(Source);
703 FullComment *FC = parseString(Source)
    [all...]
  /external/clang/include/clang/AST/
RawCommentList.h 24 class FullComment;
118 comments::FullComment *parse(const ASTContext &Context,
CommentParser.h 122 FullComment *parseFullComment();
CommentSema.h 190 FullComment *actOnFullComment(ArrayRef<BlockContentComment *> Blocks);
210 void resolveParamCommandIndexes(const FullComment *FC);
Comment.h 30 class FullComment;
744 StringRef getParamName(const FullComment *FC) const;
803 StringRef getParamName(const FullComment *FC) const;
950 /// Information about the declaration, useful to clients of FullComment.
956 /// CurrentDecl is the declaration with which the FullComment is associated.
1062 class FullComment : public Comment {
1067 FullComment(ArrayRef<BlockContentComment *> Blocks, DeclInfo *D) :
ASTContext.h 72 class FullComment;
550 mutable llvm::DenseMap<const Decl *, comments::FullComment *> ParsedComments;
581 comments::FullComment *getCommentForDecl(const Decl *D,
584 comments::FullComment *cloneFullComment(comments::FullComment *FC,
    [all...]
  /external/clang/tools/libclang/
CXComment.cpp 406 /// Separate parts of a FullComment.
409 FullCommentParts(const FullComment *C,
421 FullCommentParts::FullCommentParts(const FullComment *C,
506 "a FullComment");
544 CommentASTToHTMLConverter(const FullComment *FC,
565 void visitFullComment(const FullComment *C);
576 const FullComment *FC;
753 void CommentASTToHTMLConverter::visitFullComment(const FullComment *C) {
849 const FullComment *FC = getASTNodeAs<FullComment>(CXC)
    [all...]
CIndex.cpp     [all...]
  /external/clang/lib/AST/
Comment.cpp 294 StringRef ParamCommandComment::getParamName(const FullComment *FC) const {
299 StringRef TParamCommandComment::getParamName(const FullComment *FC) const {
CommentSema.cpp 542 FullComment *Sema::actOnFullComment(
544 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo);
698 void Sema::resolveParamCommandIndexes(const FullComment *FC) {
    [all...]
RawCommentList.cpp 161 comments::FullComment *RawComment::parse(const ASTContext &Context,
ASTDumper.cpp 46 // Comment names (FullComment, ParagraphComment, TextComment, etc)
102 /// The \c FullComment parent of the comment being dumped.
103 const FullComment *FC;
156 void dumpFullComment(const FullComment *C);
    [all...]
ASTContext.cpp 388 comments::FullComment *ASTContext::cloneFullComment(comments::FullComment *FC,
395 comments::FullComment *CFC =
396 new (*this) comments::FullComment(FC->getBlocks(),
402 comments::FullComment *ASTContext::getCommentForDecl(
408 llvm::DenseMap<const Decl *, comments::FullComment *>::iterator Pos =
413 comments::FullComment *FC = Pos->second;
414 comments::FullComment *CFC = cloneFullComment(FC, D);
429 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP))
435 if (comments::FullComment *FC = getCommentForDecl(Overridden[i], PP)
    [all...]
CommentParser.cpp 743 FullComment *Parser::parseFullComment() {

Completed in 413 milliseconds