Searched refs:Paragraph (Results 1 – 12 of 12) sorted by relevance
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/support/ |
| H A D | MarkupTests.cpp | 108 Paragraph P = Paragraph(); in TEST() 113 P = Paragraph(); in TEST() 120 P = Paragraph(); in TEST() 123 P = Paragraph(); in TEST() 126 P = Paragraph(); in TEST() 153 TEST(Paragraph, Chunks) { in TEST() argument 154 Paragraph P = Paragraph(); in TEST() 168 Paragraph P; in TEST() 189 Paragraph P; in TEST() 197 Paragraph P; in TEST() [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/support/ |
| H A D | Markup.h | 43 class Paragraph : public Block { 50 Paragraph &appendText(llvm::StringRef Text); 54 Paragraph &appendCode(llvm::StringRef Code, bool Preserve = false); 58 Paragraph &appendSpace(); 105 Paragraph &addParagraph(); 113 Paragraph &addHeading(size_t Level);
|
| H A D | Markup.cpp | 316 class Heading : public Paragraph { 321 Paragraph::renderMarkdown(OS); in renderMarkdown() 367 std::unique_ptr<Block> Paragraph::clone() const { in clone() 368 return std::make_unique<Paragraph>(*this); in clone() 414 Paragraph &Paragraph::appendSpace() { in appendSpace() 420 Paragraph &Paragraph::appendText(llvm::StringRef Text) { in appendText() 433 Paragraph &Paragraph::appendCode(llvm::StringRef Code, bool Preserve) { in appendCode() 470 Paragraph &Document::addParagraph() { in addParagraph() 471 Children.push_back(std::make_unique<Paragraph>()); in addParagraph() 472 return *static_cast<Paragraph *>(Children.back().get()); in addParagraph() [all …]
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | CommentParser.cpp | 337 ParagraphComment *Paragraph = S.actOnParagraphComment(None); in parseBlockCommand() local 339 S.actOnParamCommandFinish(PC, Paragraph); in parseBlockCommand() 342 S.actOnTParamCommandFinish(TPC, Paragraph); in parseBlockCommand() 345 S.actOnBlockCommandFinish(BC, Paragraph); in parseBlockCommand() 377 ParagraphComment *Paragraph; in parseBlockCommand() local 379 Paragraph = S.actOnParagraphComment(None); in parseBlockCommand() 384 Paragraph = cast<ParagraphComment>(Block); in parseBlockCommand() 388 S.actOnParamCommandFinish(PC, Paragraph); in parseBlockCommand() 391 S.actOnTParamCommandFinish(TPC, Paragraph); in parseBlockCommand() 394 S.actOnBlockCommandFinish(BC, Paragraph); in parseBlockCommand()
|
| H A D | CommentSema.cpp | 68 ParagraphComment *Paragraph) { in actOnBlockCommandFinish() argument 69 Command->setParagraph(Paragraph); in actOnBlockCommandFinish() 274 ParagraphComment *Paragraph) { in actOnParamCommandFinish() argument 275 Command->setParagraph(Paragraph); in actOnParamCommandFinish() 355 ParagraphComment *Paragraph) { in actOnTParamCommandFinish() argument 356 Command->setParagraph(Paragraph); in actOnTParamCommandFinish() 541 ParagraphComment *Paragraph = Command->getParagraph(); in checkBlockCommandEmptyParagraph() local 542 if (Paragraph->isWhitespace()) { in checkBlockCommandEmptyParagraph()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Comment.h | 594 ParagraphComment *Paragraph; variable 602 Paragraph(nullptr) { in BlockCommandComment() 614 Paragraph(nullptr) { in BlockCommandComment() 626 return reinterpret_cast<child_iterator>(&Paragraph); in child_begin() 630 return reinterpret_cast<child_iterator>(&Paragraph + 1); in child_end() 673 return Paragraph; in getParagraph() 677 return Paragraph && !Paragraph->isWhitespace(); in hasNonWhitespaceParagraph() 681 Paragraph = PC; in setParagraph()
|
| H A D | CommentSema.h | 98 ParagraphComment *Paragraph); 116 ParagraphComment *Paragraph); 129 ParagraphComment *Paragraph);
|
| H A D | CommentCommands.td | 243 def Paragraph : VerbatimLineCommand<"paragraph">;
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/ |
| H A D | raw-string-literal.rst | 14 const char *const Paragraph{"Line one.\nLine two.\nLine three.\n"}; 27 const char *const Paragraph{"Line one.\nLine two.\nLine three.\n"};
|
| /llvm-project-15.0.7/llvm/test/YAMLParser/ |
| H A D | spec-05-11.test | 5 Generic line break (glyphed)
Line separator
Paragraph separator
|
| /llvm-project-15.0.7/clang/unittests/AST/ |
| H A D | CommentParser.cpp | 163 ParagraphComment *&Paragraph) { in HasBlockCommandAt() argument 174 Paragraph = BCC->getParagraph(); in HasBlockCommandAt() 188 ParagraphComment *&Paragraph) { in HasParamCommandAt() argument 222 Paragraph = PCC->getParagraph(); in HasParamCommandAt() 234 ParagraphComment *&Paragraph) { in HasTParamCommandAt() argument 256 Paragraph = TPCC->getParagraph(); in HasTParamCommandAt()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | Hover.cpp | 1084 markup::Paragraph &Header = Output.addHeading(3); in present() 1118 markup::Paragraph &P = Output.addParagraph(); in present() 1211 void parseDocumentationLine(llvm::StringRef Line, markup::Paragraph &Out) { in parseDocumentationLine()
|