HomeSort by relevance Sort by last modified time
    Searched refs:paragraph (Results 1 - 25 of 73) sorted by null

1 2 3

  /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...]
__init__.py 78 getbaseclasses(paragraph)
109 'cpar' : paragraph,
  /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...]
__init__.py 59 getbaseclasses(paragraph)
77 'cpar' : paragraph,
  /external/icu4c/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/icu4c/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Text_Suite.py 46 class paragraph(aetools.ComponentItem): class in inherits:aetools.ComponentItem
47 """paragraph - A paragraph """
50 paragraphs = paragraph
128 paragraph._superclassnames = ['text']
129 paragraph._privpropdict = {
132 paragraph._privelemdict = {
147 'paragraph' : paragraph,
197 'cpar' : paragraph,
    [all...]
  /external/icu4c/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...]
clayout.c 31 pf_flow *paragraph; member in struct:Context
55 if (context->paragraph != NULL) {
59 pf_breakLines(context->paragraph, context->width, context->height);
65 si.nMax = pf_getLineCount(context->paragraph) - 1;
66 si.nPage = context->height / pf_getLineHeight(context->paragraph);
150 context->paragraph = pf_factory("Sample.txt", font, guiSupport);
221 if (context->paragraph != NULL && si.nPos != vertPos) {
222 ScrollWindow(hwnd, 0, pf_getLineHeight(context->paragraph) * (vertPos - si.nPos), NULL, NULL);
246 if (context->paragraph != NULL) {
252 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1)
    [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...]
Makefile.in 30 COMMON=cmaps.o UnicodeReader.o GnomeGUISupport.o FontMap.o GnomeFontMap.o ScriptCompositeFontInstance.o GnomeFontInstance.o FontTableCache.o paragraph.o
  /libcore/luni/src/main/java/java/text/
Bidi.java 41 * character, then set the paragraph level to 0 (left-to-right).
47 * character, then set the paragraph level to 1 (right-to-left).
90 * AttributedCharacterIterator} of a paragraph text. The RUN_DIRECTION
104 * @param paragraph
105 * the String containing the paragraph text to perform the
107 * @throws IllegalArgumentException if {@code paragraph == null}
112 public Bidi(AttributedCharacterIterator paragraph) {
113 if (paragraph == null) {
114 throw new IllegalArgumentException("paragraph is null");
117 int begin = paragraph.getBeginIndex()
    [all...]
  /external/clang/utils/
FindSpecRefs 687 paragraph = int(tail[1:])
689 paragraph = None
693 paragraph = None
696 paragraph = int(p)
698 return SpecIndex(indices, paragraph)
700 def __init__(self, indices, paragraph=None):
703 self.paragraph = paragraph
707 if self.paragraph is not None:
708 s += '.p%d'%(self.paragraph,)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
add-include 128 my $paragraph = "";
131 $paragraph .= "#include $include\n";
134 return $paragraph;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLErrors.cpp 150 RefPtr<Element> paragraph = m_document->createElement(pTag, true); local
151 paragraph->parserSetAttributes(attributes);
152 paragraph->parserAppendChild(m_document->createTextNode("This document was created as the result of an XSL transformation. The line and column numbers given are from the transformed result."));
153 reportElement->parserAppendChild(paragraph.release());
  /external/chromium_org/chrome/browser/resources/chromeos/login/
screen_error_message.css 62 .error-message-paragraph {
67 .error-message-paragraph {
71 .error-message-paragraph a {
  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
regions.js 22 var paragraph = templateParagraph.cloneNode(true);
25 paragraph.className = paragraph.className + " breakAfter";
26 return paragraph;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
__init__.py 71 getbaseclasses(StdSuites.Text_Suite.paragraph)
87 'cpar' : StdSuites.Text_Suite.paragraph,
  /external/iproute2/doc/
ip-cref.tex 228 \paragraph{Object:} A \verb|link| is a network device and the corresponding
231 \paragraph{Commands:} \verb|set| and \verb|show| (or \verb|list|).
235 \paragraph{Abbreviations:} \verb|set|, \verb|s|.
237 \paragraph{Arguments:}
310 \paragraph{Warning:} If multiple parameter changes are requested,
316 \paragraph{Examples:}
332 \paragraph{Abbreviations:} \verb|show|, \verb|list|, \verb|lst|, \verb|sh|, \verb|ls|,
335 \paragraph{Arguments:}
349 \paragraph{Output format:}
482 \paragraph{Statistics:} With the \verb|-statistics| option, \verb|ip| als
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp 307 // Determine the character offset from the start of the paragraph to the start of the original search range,
326 // Determine the character offset from the end of the original search range to the end of the paragraph,
460 // Determine the character offset from the start of the paragraph to the start of the original search range,
462 TextCheckingParagraph paragraph(m_range);
464 // Start checking from beginning of paragraph, but skip past results that occur before the start of the original search range.
466 while (startOffset < paragraph.checkingEnd()) {
470 m_client->textChecker()->checkGrammarOfString(paragraph.textSubstring(startOffset), grammarDetails, &badGrammarPhraseLocation, &badGrammarPhraseLength);
482 int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, paragraph.checkingStart(), paragraph.checkingEnd(), markAll);
491 outGrammarPhraseOffset = badGrammarPhraseLocation - paragraph.checkingStart()
    [all...]
  /external/chromium_org/chrome/test/functional/
prefetch.py 83 "<p>This paragraph contains a dynamic link prefetch. " +
  /external/chromium_org/third_party/mesa/src/docs/
MESA_ycbcr_texture.spec 140 page 129, insert this paragraph after the first full paragraph on the
  /external/mesa3d/docs/
MESA_ycbcr_texture.spec 140 page 129, insert this paragraph after the first full paragraph on the
  /external/libvorbis/doc/
01-introduction.tex 274 \paragraph{Identification Header}
279 \paragraph{Comment Header}
284 \paragraph{Setup Header}
317 \paragraph{Packet type decode}
334 \paragraph{Mode decode}
341 \paragraph{Window shape decode (long windows only)} \label{vorbis:spec:window}
389 \paragraph{floor decode}
395 \paragraph{residue decode}
411 \paragraph{inverse channel coupling}
432 \paragraph{generate floor curve
    [all...]

Completed in 466 milliseconds

1 2 3