HomeSort by relevance Sort by last modified time
    Searched full:paragraph (Results 26 - 50 of 3516) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/samples/layout/
gnomelayout.cpp 24 #include "paragraph.h"
37 Paragraph *paragraph; member in struct:Context
90 Paragraph *newPara;
94 newPara = Paragraph::paragraphFactory(fileName, font, guiSupport);
100 if (context->paragraph != NULL) {
101 delete context->paragraph;
104 context->paragraph = newPara;
108 context->paragraph->breakLines(context->width, context->height);
205 if (context->paragraph != NULL)
    [all...]
paragraph.cpp 8 * file name: Paragraph.cpp
23 #include "paragraph.h"
76 Paragraph::Paragraph(const LEUnicode chars[], int32_t charCount, const FontRuns *fontRuns, LEErrorCode &status)
161 Paragraph::~Paragraph()
167 for (le_int32 paragraph = 0; paragraph < fParagraphCount; paragraph += 1) {
168 delete fParagraphLayout[paragraph];
    [all...]
layout.cpp 17 #include "paragraph.h"
32 Paragraph *paragraph; member in struct:Context
54 if (context->paragraph != NULL) {
58 context->paragraph->breakLines(context->width, context->height);
64 si.nMax = context->paragraph->getLineCount() - 1;
65 si.nPage = context->height / context->paragraph->getLineHeight();
148 context->paragraph = Paragraph::paragraphFactory("Sample.txt", font, guiSupport);
219 if (context->paragraph != NULL && si.nPos != vertPos)
    [all...]
cgnomelayout.c 25 pf_flow *paragraph; member in struct:Context
92 if (context->paragraph != NULL) {
93 pf_close(context->paragraph);
96 context->paragraph = newPara;
100 pf_breakLines(context->paragraph, context->width, context->height);
197 if (context->paragraph != NULL) {
202 pf_breakLines(context->paragraph, context->width, context->height);
211 if (context->paragraph != NULL) {
212 gint maxLines = pf_getLineCount(context->paragraph) - 1;
213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Text_Suite.py 66 class paragraph(aetools.ComponentItem): class in inherits:aetools.ComponentItem
67 """paragraph - This subdivides the text into paragraphs. """
74 paragraphs = paragraph
101 'paragraph' : paragraph,
115 'paragraph' : paragraph,
128 'paragraph' : paragraph,
131 paragraph._superclassnames = ['item'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Text_Suite.py 66 class paragraph(aetools.ComponentItem): class in inherits:aetools.ComponentItem
67 """paragraph - This subdivides the text into paragraphs. """
74 paragraphs = paragraph
101 'paragraph' : paragraph,
115 'paragraph' : paragraph,
128 'paragraph' : paragraph,
131 paragraph._superclassnames = ['item'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Text_Suite.py 66 class paragraph(aetools.ComponentItem): class in inherits:aetools.ComponentItem
67 """paragraph - This subdivides the text into paragraphs. """
74 paragraphs = paragraph
101 'paragraph' : paragraph,
115 'paragraph' : paragraph,
128 'paragraph' : paragraph,
131 paragraph._superclassnames = ['item'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Text_Suite.py 66 class paragraph(aetools.ComponentItem): class in inherits:aetools.ComponentItem
67 """paragraph - This subdivides the text into paragraphs. """
74 paragraphs = paragraph
101 'paragraph' : paragraph,
115 'paragraph' : paragraph,
128 'paragraph' : paragraph,
131 paragraph._superclassnames = ['item'
    [all...]
  /external/markdown/MarkdownTest/Tests_2004/
Inline HTML comments.text-out 9 <p>Paragraph one.</p>
14 <p>Paragraph two.</p>
Inline HTML comments.text-res 9 <p>Paragraph one.</p>
14 <p>Paragraph two.</p>
Hard-wrapped paragraphs with list-like lines.html 4 middle of a paragraph looked like a
Hard-wrapped paragraphs with list-like lines.text 4 middle of a paragraph looked like a
  /external/tcpdump/
l2vpn.h 4 * distributions retain the above copyright notice and this paragraph
6 * the above copyright notice and this paragraph in its entirety in
  /external/icu/icu4c/source/layoutex/layout/
playout.h 23 * \brief C API for paragraph layout.
31 * The opaque type for a paragraph layout.
38 * The opaque type for a line in a paragraph layout.
52 * Construct a <code>ParagraphLayout</code> object for a styled paragraph. The paragraph is specified
63 * @param chars is an array of the characters in the paragraph
65 * @param count is the number of characters in the paragraph.
81 * @param paragraphLevel is the directionality of the paragraph, as in the UBiDi object.
83 * @param vertical is <code>TRUE</code> if the paragraph should be set vertically.
108 * Close the given paragraph layout object
    [all...]
  /external/icu/icu4c/source/layoutex/
playout.cpp 44 pl_close(pl_paragraph *paragraph)
46 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
59 pl_getParagraphLevel(pl_paragraph *paragraph)
61 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
71 pl_getTextDirection(pl_paragraph *paragraph)
73 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
83 pl_getAscent(const pl_paragraph *paragraph)
85 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
95 pl_getDescent(const pl_paragraph *paragraph)
97 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
    [all...]
  /external/markdown/MarkdownTest/Tests_2007/
Hard-wrapped paragraphs with list-like lines.html 4 middle of a paragraph looked like a
Hard-wrapped paragraphs with list-like lines.text 4 middle of a paragraph looked like a
  /external/markdown/tests/extensions-x-def_list/
simple_def-lists.txt 17 paragraph 2 of def 3.
  /external/markdown/tests/extensions-x-footnotes/
footnote.txt 14 Paragraph two.
  /external/markdown/tests/markdown-test/
hard-wrapped.html 4 middle of a paragraph looked like a
hard-wrapped.txt 4 middle of a paragraph looked like a
  /external/markdown/tests/misc/
lists.txt 2 * A multi-paragraph list,
lists5.html 5 <p>A paragraph</p>
nested-lists.txt 3 paragraph 2
  /frameworks/base/core/java/android/text/style/
LeadingMarginSpan.java 27 * A paragraph style affecting the leading margin. There can be multiple leading
28 * margin spans on a single paragraph; they will be rendered in order, each
30 * for lines in a right-to-left paragraph.
33 * character of a single paragraph.
40 * move away from the leading edge of the paragraph, negative values move
43 * @param first true if the request is for the first line of a paragraph,
56 * @param dir the base direction of the paragraph; if negative, the margin
64 * @param first true if this is the first line of its paragraph
76 * implementor to specify the number of lines of the paragraph to which
77 * this object is attached that the "first line of paragraph" margin widt
    [all...]

Completed in 878 milliseconds

12 3 4 5 6 7 8 91011>>