Home
last modified time | relevance | path

Searched refs:ParagraphComment (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang/unittests/AST/
H A DCommentParser.cpp436 ParagraphComment *PC; in HasParagraphCommentAt()
620 ParagraphComment *PC; in TEST_F()
688 ParagraphComment *PC; in TEST_F()
705 ParagraphComment *PC; in TEST_F()
712 ParagraphComment *PC; in TEST_F()
732 ParagraphComment *PC; in TEST_F()
742 ParagraphComment *PC; in TEST_F()
758 ParagraphComment *PC; in TEST_F()
777 ParagraphComment *PC; in TEST_F()
787 ParagraphComment *PC; in TEST_F()
[all …]
/llvm-project-15.0.7/clang/include/clang/AST/
H A DCommentSema.h86 ParagraphComment *actOnParagraphComment(
98 ParagraphComment *Paragraph);
116 ParagraphComment *Paragraph);
129 ParagraphComment *Paragraph);
H A DComment.h126 friend class ParagraphComment; variable
538 class ParagraphComment : public BlockContentComment {
542 ParagraphComment(ArrayRef<InlineContentComment *> Content) : in ParagraphComment() function
594 ParagraphComment *Paragraph;
672 ParagraphComment *getParagraph() const LLVM_READONLY { in getParagraph()
680 void setParagraph(ParagraphComment *PC) { in setParagraph()
/llvm-project-15.0.7/clang-tools-extra/unittests/clang-doc/
H A DHTMLGeneratorTest.cpp383 BlankLine->Kind = "ParagraphComment"; in TEST()
389 Brief->Kind = "ParagraphComment"; in TEST()
392 Brief->Children.back()->Name = "ParagraphComment"; in TEST()
397 Extended->Kind = "ParagraphComment"; in TEST()
407 Entities->Kind = "ParagraphComment"; in TEST()
410 Entities->Children.back()->Name = "ParagraphComment"; in TEST()
/llvm-project-15.0.7/clang/lib/Index/
H A DCommentToXML.cpp89 const ParagraphComment *FirstParagraph;
110 const ParagraphComment *PC = cast<ParagraphComment>(Child); in FullCommentParts()
234 void visitParagraphComment(const ParagraphComment *C);
248 void visitNonStandaloneParagraphComment(const ParagraphComment *C);
320 const ParagraphComment *C) { in visitParagraphComment()
488 const ParagraphComment *C) { in visitNonStandaloneParagraphComment()
545 void visitParagraphComment(const ParagraphComment *C);
547 void appendParagraphCommentWithKind(const ParagraphComment *C,
683 CommentASTToXMLConverter::visitParagraphComment(const ParagraphComment *C) { in visitParagraphComment()
688 const ParagraphComment *C, in appendParagraphCommentWithKind()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DCommentNodes.td17 def ParagraphComment : CommentNode<BlockContentComment>;
/llvm-project-15.0.7/clang/lib/AST/
H A DCommentSema.cpp45 ParagraphComment *Sema::actOnParagraphComment( in actOnParagraphComment()
47 return new (Allocator) ParagraphComment(Content); in actOnParagraphComment()
68 ParagraphComment *Paragraph) { in actOnBlockCommandFinish()
274 ParagraphComment *Paragraph) { in actOnParamCommandFinish()
355 ParagraphComment *Paragraph) { in actOnTParamCommandFinish()
541 ParagraphComment *Paragraph = Command->getParagraph(); in checkBlockCommandEmptyParagraph()
H A DCommentParser.cpp337 ParagraphComment *Paragraph = S.actOnParagraphComment(None); in parseBlockCommand()
377 ParagraphComment *Paragraph; in parseBlockCommand()
384 Paragraph = cast<ParagraphComment>(Block); in parseBlockCommand()
H A DComment.cpp114 bool ParagraphComment::isWhitespaceNoCache() const { in isWhitespaceNoCache()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXComment.cpp113 if (const ParagraphComment *PC = dyn_cast<ParagraphComment>(C)) in clang_Comment_isWhitespace()
/llvm-project-15.0.7/clang-tools-extra/clang-doc/
H A DHTMLGenerator.cpp610 auto ParagraphComment = std::make_unique<TagNode>(HTMLTag::TAG_P); in genHTML() local
614 ParagraphComment->Children.emplace_back(std::move(Node)); in genHTML()
616 if (ParagraphComment->Children.empty()) in genHTML()
618 return std::move(ParagraphComment); in genHTML()