/external/syzkaller/vendor/golang.org/x/text/unicode/bidi/ |
D | bidi.go | 73 type Paragraph struct { struct 82 func (p *Paragraph) SetBytes(b []byte, opts ...Option) (n int, err error) { argument 91 func (p *Paragraph) SetString(s string, opts ...Option) (n int, err error) { argument 98 func (p *Paragraph) IsLeftToRight() bool { argument 105 func (p *Paragraph) Direction() Direction { argument 112 func (p *Paragraph) RunAt(pos int) Run { argument 117 func (p *Paragraph) Order() (Ordering, error) { argument 123 func (p *Paragraph) Line(start, end int) (Ordering, error) { argument
|
/external/icu/icu4c/source/samples/layout/ |
D | paragraph.h | 39 class Paragraph 42 …Paragraph(const LEUnicode chars[], le_int32 charCount, const FontRuns *fontRuns, LEErrorCode &stat… 44 ~Paragraph(); 52 …static Paragraph *paragraphFactory(const char *fileName, const LEFontInstance *font, GUISupport *g… 77 inline le_int32 Paragraph::getLineHeight() in getLineHeight() 82 inline le_int32 Paragraph::getLineCount() in getLineCount() 87 inline le_int32 Paragraph::getAscent() in getAscent()
|
D | paragraph.cpp | 82 Paragraph::Paragraph(const LEUnicode chars[], int32_t charCount, const FontRuns *fontRuns, LEErrorC… in Paragraph() function in Paragraph 167 Paragraph::~Paragraph() in ~Paragraph() 182 void Paragraph::addLine(const ParagraphLayout::Line *line) in addLine() 192 void Paragraph::breakLines(le_int32 width, le_int32 height) in breakLines() 227 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine) in draw() 263 Paragraph *Paragraph::paragraphFactory(const char *fileName, const LEFontInstance *font, GUISupport… in paragraphFactory() 268 Paragraph *result = NULL; in paragraphFactory() 278 result = new Paragraph(text, charCount, &fontRuns, status); in paragraphFactory()
|
D | gnomelayout.cpp | 43 Paragraph *paragraph; 96 Paragraph *newPara; in openOK() 100 newPara = Paragraph::paragraphFactory(fileName, font, guiSupport); in openOK() 242 context->paragraph = Paragraph::paragraphFactory(fileName, font, guiSupport); in newSample()
|
D | layout.cpp | 38 Paragraph *paragraph; 154 context->paragraph = Paragraph::paragraphFactory("Sample.txt", font, guiSupport); in WndProc() 301 Paragraph *newParagraph = Paragraph::paragraphFactory(szFileName, font, guiSupport); in WndProc()
|
/external/markdown/tests/misc/ |
D | blockquote-below-paragraph.txt | 1 Paragraph 5 Paragraph 9 Paragraph one
|
/external/pdfium/xfa/fgas/layout/ |
D | cfx_rtfbreak_unittest.cpp | 46 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(L'\n')); in TEST_F() 59 b->EndBreak(CFX_BreakType::Paragraph); in TEST_F() 69 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(0x2029)); in TEST_F() 70 EXPECT_EQ(CFX_BreakType::Paragraph, b->AppendChar(L'\n')); in TEST_F()
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Inline HTML comments.text | 1 Paragraph one. 9 Paragraph two.
|
/external/markdown/tests/safe_mode/ |
D | inline-html-comments.txt | 1 Paragraph one. 9 Paragraph two.
|
/external/markdown/tests/markdown-test/ |
D | inline-html-comments.txt | 1 Paragraph one. 9 Paragraph two.
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Inline HTML comments.text | 1 Paragraph one. 9 Paragraph two.
|
/external/clang/lib/AST/ |
D | CommentParser.cpp | 341 ParagraphComment *Paragraph = S.actOnParagraphComment(None); in parseBlockCommand() local 343 S.actOnParamCommandFinish(PC, Paragraph); in parseBlockCommand() 346 S.actOnTParamCommandFinish(TPC, Paragraph); in parseBlockCommand() 349 S.actOnBlockCommandFinish(BC, Paragraph); in parseBlockCommand() 381 ParagraphComment *Paragraph; in parseBlockCommand() local 383 Paragraph = S.actOnParagraphComment(None); in parseBlockCommand() 388 Paragraph = cast<ParagraphComment>(Block); in parseBlockCommand() 392 S.actOnParamCommandFinish(PC, Paragraph); in parseBlockCommand() 395 S.actOnTParamCommandFinish(TPC, Paragraph); in parseBlockCommand() 398 S.actOnBlockCommandFinish(BC, Paragraph); in parseBlockCommand()
|
D | CommentSema.cpp | 68 ParagraphComment *Paragraph) { in actOnBlockCommandFinish() argument 69 Command->setParagraph(Paragraph); in actOnBlockCommandFinish() 276 ParagraphComment *Paragraph) { in actOnParamCommandFinish() argument 277 Command->setParagraph(Paragraph); in actOnParamCommandFinish() 359 ParagraphComment *Paragraph) { in actOnTParamCommandFinish() argument 360 Command->setParagraph(Paragraph); in actOnTParamCommandFinish() 567 ParagraphComment *Paragraph = Command->getParagraph(); in checkBlockCommandEmptyParagraph() local 568 if (Paragraph->isWhitespace()) { in checkBlockCommandEmptyParagraph()
|
/external/clang/include/clang/AST/ |
D | Comment.h | 617 ParagraphComment *Paragraph; variable 625 Paragraph(nullptr) { in BlockCommandComment() 637 Paragraph(nullptr) { in BlockCommandComment() 649 return reinterpret_cast<child_iterator>(&Paragraph); in child_begin() 653 return reinterpret_cast<child_iterator>(&Paragraph + 1); in child_end() 696 return Paragraph; in getParagraph() 700 return Paragraph && !Paragraph->isWhitespace(); in hasNonWhitespaceParagraph() 704 Paragraph = PC; in setParagraph()
|
D | CommentSema.h | 99 ParagraphComment *Paragraph); 117 ParagraphComment *Paragraph); 130 ParagraphComment *Paragraph);
|
/external/pdfium/xfa/fde/ |
D | cfde_textout.cpp | 233 dwBreakStatus = m_pTxtBreak->EndBreak(CFX_BreakType::Paragraph); in CalcLogicSize() 269 if (dwBreakStatus == CFX_BreakType::Paragraph) in RetrieveLineWidth() 348 (m_Styles.line_wrap_ || dwBreakStatus == CFX_BreakType::Paragraph || in LoadText() 362 dwBreakStatus = m_pTxtBreak->EndBreak(CFX_BreakType::Paragraph); in LoadText() 420 dwBreakStatus == CFX_BreakType::Paragraph; in RetrievePieces() 484 dwBreakStatus = m_pTxtBreak->EndBreak(CFX_BreakType::Paragraph); in ReloadLinePiece()
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-05-11.data | 3 Generic line break (glyphed)
Line separator
Paragraph separator
|
D | spec-05-11.canonical | 6 Paragraph separator\u2029"
|
/external/llvm/test/YAMLParser/ |
D | spec-05-11.test | 5 Generic line break (glyphed)
Line separator
Paragraph separator
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/ |
D | spec-05-11.test | 5 Generic line break (glyphed)
Line separator
Paragraph separator
|
/external/markdown/tests/extensions-x-footnotes/ |
D | footnote.txt | 14 Paragraph two.
|
/external/pdfium/core/fxcrt/ |
D | cfx_char.h | 14 enum class CFX_BreakType { None = 0, Piece, Line, Paragraph, Page }; enumerator
|
/external/clang/unittests/AST/ |
D | CommentParser.cpp | 165 ParagraphComment *&Paragraph) { in HasBlockCommandAt() argument 176 Paragraph = BCC->getParagraph(); in HasBlockCommandAt() 190 ParagraphComment *&Paragraph) { in HasParamCommandAt() argument 224 Paragraph = PCC->getParagraph(); in HasParamCommandAt() 236 ParagraphComment *&Paragraph) { in HasTParamCommandAt() argument 258 Paragraph = TPCC->getParagraph(); in HasTParamCommandAt()
|
/external/markdown/docs/extensions/ |
D | footnotes.txt | 35 Paragraph two of the definition.
|
/external/icu/icu4c/source/tools/genren/ |
D | README | 14 This is prerequisite for the icu layoutex (Paragraph Layout) project, which is subject to renaming.
|