Searched refs:paragraph (Results 1 - 25 of 40) sorted by relevance

12

/external/icu/icu4c/source/layoutex/layout/
H A Dplayout.h23 * \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 layou
[all...]
/external/icu/icu4c/source/layoutex/
H A Dplayout.cpp44 pl_close(pl_paragraph *paragraph) argument
46 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
59 pl_getParagraphLevel(pl_paragraph *paragraph) argument
61 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
71 pl_getTextDirection(pl_paragraph *paragraph) argument
73 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
83 pl_getAscent(const pl_paragraph *paragraph) argument
85 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
95 pl_getDescent(const pl_paragraph *paragraph) argument
97 ParagraphLayout *pl = (ParagraphLayout *) paragraph;
107 pl_getLeading(const pl_paragraph *paragraph) argument
119 pl_reflow(pl_paragraph *paragraph) argument
131 pl_nextLine(pl_paragraph *paragraph, float width) argument
[all...]
/external/icu/icu4c/source/samples/layout/
H A Dgnomelayout.cpp24 #include "paragraph.h"
37 Paragraph *paragraph; member in struct:Context
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) {
210 context->paragraph->breakLines(context->width, context->height);
219 if (context->paragraph != NULL) {
220 gint maxLines = context->paragraph
[all...]
H A Dclayout.c31 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)
[all...]
H A Dlayout.cpp17 #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) {
220 ScrollWindow(hwnd, 0, context->paragraph->getLineHeight() * (vertPos - si.nPos), NULL, NULL);
244 if (context->paragraph !
[all...]
H A Dcgnomelayout.c25 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...]
H A DMakefile.in30 COMMON=cmaps.o UnicodeReader.o GnomeGUISupport.o FontMap.o GnomeFontMap.o ScriptCompositeFontInstance.o GnomeFontInstance.o FontTableCache.o paragraph.o
/external/clang/utils/
H A DFindSpecRefs687 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/PerformanceTests/Layout/Shapes/resources/
H A Dshapes.js21 var paragraph = templateParagraph.cloneNode(true);
22 return paragraph;
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dadd-include128 my $paragraph = "";
131 $paragraph .= "#include $include\n";
134 return $paragraph;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLErrors.cpp157 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());
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSpellChecker.cpp290 // 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
[all...]
H A DTextCheckingHelper.cpp307 // 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
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_error_message.css80 .error-message-paragraph {
85 .error-message-paragraph {
89 .error-message-paragraph a {
/external/iproute2/doc/
H A Dip-cref.tex228 \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{Statistic
[all...]
H A Dapi-ip6-flowlabels.tex89 \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/chromium_org/third_party/mesa/src/docs/
H A DMESA_ycbcr_texture.spec140 page 129, insert this paragraph after the first full paragraph on the
H A DMESA_texture_array.spec163 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 (pag
[all...]
/external/mesa3d/docs/
H A DMESA_ycbcr_texture.spec140 page 129, insert this paragraph after the first full paragraph on the
H A DMESA_texture_array.spec163 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 (pag
[all...]
/external/libvorbis/doc/
H A D01-introduction.tex274 \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{generat
[all...]
/external/qemu/ui/
H A Dcurses_keys.h367 { "paragraph", 0x0b6 },
/external/chromium_org/third_party/icu/source/test/letest/
H A Dcletest.c503 * 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/icu/icu4c/source/test/letest/
H A Dcletest.c503 * Build a paragraph that contains a mixture of left to right and right to left text.
518 pl_paragraph *paragraph; local
651 paragraph = pl_create(chars, charCount, fontRuns, NULL, NULL, NULL, 0, FALSE, &status);
660 pl_reflow(paragraph);
661 while ((line = pl_nextLine(paragraph, lineWidth)) != NULL) {
725 pl_close(paragraph);
/external/chromium_org/ui/base/l10n/
H A Dl10n_util.cc251 // On Linux, the text layout engine Pango determines paragraph directionality
256 void AdjustParagraphDirectionality(base::string16* paragraph) { argument
259 base::i18n::StringContainsStrongRTLChars(*paragraph)) {
260 paragraph->insert(0, 1,

Completed in 1332 milliseconds

12