/external/webkit/LayoutTests/fast/dom/beforeload/resources/ |
print.js | 3 var paragraph = document.createElement("div"); 4 paragraph.appendChild(document.createTextNode(message)); 5 paragraph.style.fontFamily = "monospace"; 7 paragraph.style.color = color; 8 document.getElementById("console").appendChild(paragraph);
|
/external/icu4c/layoutex/layout/ |
playout.h | 22 * \brief C API for paragraph layout. 30 * The opaque type for a paragraph layout. 37 * The opaque type for a line in a paragraph layout. 51 * Construct a <code>ParagraphLayout</code> object for a styled paragraph. The paragraph is specified 62 * @param chars is an array of the characters in the paragraph 64 * @param count is the number of characters in the paragraph. 80 * @param paragraphLevel is the directionality of the paragraph, as in the UBiDi object. 82 * @param vertical is <code>TRUE</code> if the paragraph should be set vertically. 107 * 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...] |
/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
|
Makefile | 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/webkit/Tools/Scripts/ |
add-include | 128 my $paragraph = ""; 131 $paragraph .= "#include $include\n"; 134 return $paragraph;
|
/external/webkit/Source/WebCore/editing/ |
TextCheckingHelper.cpp | 242 // Determine the character offset from the start of the paragraph to the start of the original search range, 261 // Determine the character offset from the end of the original search range to the end of the paragraph, 416 // Determine the character offset from the start of the paragraph to the start of the original search range, 418 TextCheckingParagraph paragraph(m_range); 420 // Start checking from beginning of paragraph, but skip past results that occur before the start of the original search range. 422 while (startOffset < paragraph.checkingEnd()) { 426 m_client->textChecker()->checkGrammarOfString(paragraph.textCharacters() + startOffset, paragraph.textLength() - startOffset, grammarDetails, &badGrammarPhraseLocation, &badGrammarPhraseLength); 438 int badGrammarIndex = findFirstGrammarDetail(grammarDetails, badGrammarPhraseLocation, badGrammarPhraseLength, paragraph.checkingStart(), paragraph.checkingEnd(), markAll) [all...] |
markup.cpp | 442 // Add an interchange newline if a paragraph break is selected and a br won't already be added to the markup to represent it. 704 static void fillContainerFromString(ContainerNode* paragraph, const String& string) 706 Document* document = paragraph->document(); 710 paragraph->appendChild(createBlockPlaceholderElement(document), ec); 728 paragraph->appendChild(createTabSpanElement(document, tabText), ec); [all...] |
/external/webkit/Source/WebKit/gtk/tests/ |
testatk.c | 29 static const char* centeredContents = "<html><body><p style='text-align: center;'>Short line</p><p style='text-align: center;'>Long-size line with some foo bar baz content</p><p style='text-align: center;'>Short line</p><p style='text-align: center;'>This is a multi-line paragraph<br />where the first line<br />is the biggest one</p></body></html>"; 35 static const char* contentsWithSpecialChars = "<html><body><p>« This is a paragraph with “special” characters inside. »</p></body></html>"; 49 static const char* contentsWithExtraneousWhiteSpaces = "<html><head><body><p>This\n paragraph\n is\n borked!</p></body></html>"; 57 static const char* hypertextAndHyperlinks = "<html><body><p>A paragraph with no links at all</p><p><a href='http://foo.bar.baz/'>A line</a> with <a href='http://bar.baz.foo/'>a link in the middle</a> as well as at the beginning and <a href='http://baz.foo.bar/'>at the end</a></p><ol><li>List item with a <span><a href='http://foo.bar.baz/'>link inside a span node</a></span></li></ol></body></html>"; 65 static const char* textForCaretBrowsing = "<html><body><h1>A text header</h1><p>A paragraph <a href='http://foo.bar.baz/'>with a link</a> in the middle</p><ol><li>A list item</li></ol><select><option selected value='foo'>An option in a combo box</option></select></body></html>"; 67 static const char* textForSelections = "<html><body><p>A paragraph with plain text</p><p>A paragraph with <a href='http://webkit.org'>a link</a> in the middle</p><ol><li>A list item</li></ol><select></body></html>"; 260 AtkObject* paragraph = atk_object_ref_accessible_child(object, 1); local 261 g_assert(ATK_IS_TEXT(paragraph)); 262 text = atk_text_get_text(ATK_TEXT(paragraph), 0, -1) 1397 AtkObject* paragraph = atk_object_ref_accessible_child(object, 0); local [all...] |
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLParagraphElement01.js | 49 docsLoaded += preload(docRef, "doc", "paragraph"); 98 doc = load(docRef, "doc", "paragraph");
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLParagraphElement01.js | 49 docsLoaded += preload(docRef, "doc", "paragraph"); 98 doc = load(docRef, "doc", "paragraph");
|
/external/webkit/Source/WebCore/dom/ |
XMLDocumentParser.cpp | 330 RefPtr<Element> paragraph = document->createElement(pTag, false); local 331 paragraph->setAttribute(styleAttr, "white-space: normal"); 332 paragraph->appendChild(document->createTextNode("This document was created as the result of an XSL transformation. The line and column numbers given are from the transformed result."), ec); 333 reportElement->appendChild(paragraph.release(), ec);
|
/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...] |
api-ip6-flowlabels.tex | 89 \paragraph{Discussion.} 133 \paragraph{Implementation.} 168 \paragraph{Note about IPv6 options and destination address.} 176 \paragraph{Example.} 220 \paragraph{Discussion.} 261 \paragraph{Implementation.} 341 \paragraph{Example.} 382 \paragraph{Listing flow labels.} 407 \paragraph{Flow labels and RSVP.}
|
/external/mesa3d/docs/ |
MESA_ycbcr_texture.spec | 140 page 129, insert this paragraph after the first full paragraph on the
|
MESA_texture_array.spec | 163 Change the first paragraph (page 150) to say (spec changes identical to 179 Change the fourth paragraph on page 151 to say (spec changes identical 190 Change the fourth paragraph on page 156 to say (spec changes identical 228 Change the second paragraph (page 159) (spec changes identical 246 Change the last paragraph on page 160 to say (spec changes identical 261 Change the first paragraph (page 166) to say: 276 Change the first paragraph (page 172) to say: 291 Change the third paragraph (page 174) to say: 296 Change the fourth paragraph (page 174) to say: 300 After the first paragraph (page 175) add [all...] |
/external/qemu/ |
curses_keys.h | 367 { "paragraph", 0x0b6 },
|
/external/icu4c/test/letest/ |
cletest.c | 503 * Build a paragraph that contains a mixture of left to right and right to left text. 517 pl_paragraph *paragraph; local 650 paragraph = pl_create(chars, charCount, fontRuns, NULL, NULL, NULL, 0, FALSE, &status); 659 pl_reflow(paragraph); 660 while ((line = pl_nextLine(paragraph, lineWidth)) != NULL) { 724 pl_close(paragraph);
|
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/ |
markdown.php | 84 # - Remove WordPress paragraph generator. 86 # - Add paragraph tag around the excerpt, but remove it for the excerpt rss. 120 # - Remove WordPress paragraph generator. 123 # - Run Markdown on excerpt then remove paragraph tags. 536 # to be wrapped into paragraph tags at the end, ":" is used for elements 596 # Finally form paragraph and restore hashed blocks. [all...] |