/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/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...] |
/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/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...] |
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...] |
/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...] |
/frameworks/base/media/java/android/media/ |
SRTRenderer.java | 90 String paragraph; local 91 paragraph = new String(data.getData(), "UTF-8"); 92 String[] lines = paragraph.split("\\r?\\n"); 130 List<String> paragraph = new ArrayList<String>(); local 132 paragraph.add(s); 136 cue.mLines = new TextTrackCueSpan[paragraph.size()][]; 137 cue.mStrings = paragraph.toArray(new String[0]); 138 for (String line : paragraph) {
|
/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 | 157 RefPtrWillBeRawPtr<Element> paragraph = m_document->createElement(pTag, true); local 158 paragraph->parserSetAttributes(attributes); 159 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.")); 160 reportElement->parserAppendChild(paragraph.release());
|
/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/chromium_org/third_party/WebKit/Source/core/editing/ |
SpellChecker.cpp | 290 // FIXME 4859190: This gets confused with doubled punctuation at the end of a paragraph 534 TextCheckingParagraph paragraph(request->checkingRange(), request->paragraphRange()); 550 selectionOffset = paragraph.offsetTo(caretPosition, ASSERT_NO_EXCEPTION); 552 if (selectionOffset > 0 && (static_cast<unsigned>(selectionOffset) > paragraph.text().length() || paragraph.textCharAt(selectionOffset - 1) == newlineCharacter)) 554 if (selectionOffset > 0 && static_cast<unsigned>(selectionOffset) <= paragraph.text().length() && isAmbiguousBoundaryCharacter(paragraph.textCharAt(selectionOffset - 1))) 560 int spellingRangeEndOffset = paragraph.checkingEnd(); 562 int resultLocation = result->location + paragraph.checkingStart(); 571 if (shouldMarkSpelling && result->decoration == TextDecorationTypeSpelling && resultLocation >= paragraph.checkingStart() && resultLocation + resultLength <= spellingRangeEndOffset && !resultEndsAtAmbiguo (…) [all...] |
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/browser/resources/chromeos/login/ |
screen_error_message.css | 80 .error-message-paragraph { 85 .error-message-paragraph { 89 .error-message-paragraph a {
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/ |
doxia-sink-api-1.0-alpha-7.jar | |
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/Shapes/resources/ |
shapes.js | 21 var paragraph = templateParagraph.cloneNode(true); 22 return 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/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
|