HomeSort by relevance Sort by last modified time
    Searched full:textlength (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/icu4c/common/
chariter.cpp 22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
27 if(textLength < 0) {
28 textLength = end = 0;
33 : textLength(length), pos(position), begin(0), end(length) {
34 if(textLength < 0) {
35 textLength = end = 0;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
46 if(textLength < 0) {
47 textLength = 0
    [all...]
ubrk.cpp 34 int32_t textLength,
80 ubrk_setText(uBI, text, textLength, status);
97 int32_t textLength,
114 ubrk_setText(uBI, text, textLength, status);
166 int32_t textLength,
171 utext_openUChars(&ut, text, textLength, status);
uchriter.cpp 79 && textLength == realThat.textLength
87 return ustr_hashUCharsN(text, textLength) ^ pos ^ begin ^ end;
356 end = textLength = newTextLength;
362 result = UnicodeString(text, textLength);
usc_impl.c 43 int32_t textLength;
252 scriptRun->textLength = length;
263 if (scriptRun == NULL || scriptRun->scriptLimit >= scriptRun->textLength) {
270 for (scriptRun->scriptStart = scriptRun->scriptLimit; scriptRun->scriptLimit < scriptRun->textLength; scriptRun->scriptLimit += 1) {
280 if (high >= 0xD800 && high <= 0xDBFF && scriptRun->scriptLimit < scriptRun->textLength - 1) {
  /external/webkit/Source/WebCore/accessibility/gtk/
AccessibilityObjectAtk.cpp 115 unsigned textLength = text().length();
117 if (textLength)
118 return textLength;
125 textLength = renderText ? renderText->textLength() : 0;
130 if (!textLength && allowsTextRanges())
131 textLength = textUnderElement().length();
133 return textLength;
  /external/icu4c/i18n/
search.cpp 36 m_search_->textLength = other.m_search_->textLength;
159 m_search_->textLength = m_text_.length();
190 m_search_->textLength == that.m_search_->textLength &&
193 m_search_->textLength * sizeof(UChar)) == 0));
222 setOffset(m_search_->textLength, status);
223 return handlePrev(m_search_->textLength, status);
244 int32_t textlength = m_search_->textLength; local
    [all...]
utrans.cpp 437 int32_t* textLength,
450 int32_t textLen = (textLength == NULL || *textLength < 0)
451 ? u_strlen(text) : *textLength;
460 if(textLength != NULL) {
461 *textLength = textLen;
468 int32_t* textLength,
480 int32_t textLen = (textLength == NULL || *textLength < 0)
481 ? u_strlen(text) : *textLength;
    [all...]
usearch.cpp 302 uint32_t patternlength = pattern->textLength;
315 pattern->textLength,
377 uint32_t patternlength = pattern->textLength;
389 pattern->textLength,
451 int32_t length = pattern->textLength;
677 * @param textlength length of text string
684 int32_t textlength)
686 if (textoffset < textlength) {
688 if (getFCD(text, &temp, textlength) >> SECOND_LAST_BYTE_SHIFT_) {
689 while (temp < textlength) {
715 int32_t textlength = strsrch->search->textLength; local
1017 int32_t textlength = strsrch->search->textLength; local
1177 int32_t textlength = strsrch->search->textLength; local
1461 int32_t textlength = strsrch->search->textLength; local
1827 int32_t textlength = strsrch->search->textLength; local
1861 int32_t textlength = strsrch->search->textLength; local
2024 int32_t textlength = strsrch->search->textLength; local
2388 int32_t textlength = strsrch->search->textLength; local
2464 int32_t textlength = strsrch->search->textLength; local
3187 int32_t textlength = search->textLength; local
4332 int32_t textlength = strsrch->search->textLength; local
4446 int32_t textlength = strsrch->search->textLength; local
    [all...]
unum.cpp 320 int32_t textLength,
327 const UnicodeString src((UBool)(textLength == -1), text, textLength);
348 int32_t textLength,
353 parseRes(res, fmt, text, textLength, parsePos, status);
360 int32_t textLength,
365 parseRes(res, fmt, text, textLength, parsePos, status);
372 int32_t textLength,
377 parseRes(res, fmt, text, textLength, parsePos, status);
384 int32_t textLength,
    [all...]
usrchimp.h 27 int32_t textLength; // exact length
45 int32_t textLength; // exact length
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 269 final int textLength = mText.length();
270 if (textLength <= 0) {
273 if (offset >= textLength) {
280 while (start < textLength && mText.charAt(start) == '\n'
284 if (start >= textLength) {
288 while (end < textLength && !isEndBoundary(end)) {
296 final int textLength = mText.length();
297 if (textLength <= 0) {
304 if (end > textLength) {
305 end = textLength;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 310 int textLength = getAssociatedTextLength();
311 if (textLength < ((1 << 16) - (1 << 8)))
313 cMac.update((byte)(textLength >> 8));
314 cMac.update((byte)textLength);
322 cMac.update((byte)(textLength >> 24));
323 cMac.update((byte)(textLength >> 16));
324 cMac.update((byte)(textLength >> 8));
325 cMac.update((byte)textLength);
340 extra = (extra + textLength) % 16;
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.cpp 107 atCharacter += text->textLength();
112 unsigned textLength = text->textLength();
113 for (unsigned textPosition = 0; textPosition < textLength; ++textPosition) {
153 void SVGTextLayoutAttributesBuilder::buildLayoutAttributesForAllCharacters(RenderSVGText* textRoot, unsigned textLength)
155 ASSERT(textLength);
161 m_positioningLists.fillWithEmptyValues(textLength);
164 TextPosition wholeTextPosition(outermostTextElement, 0, textLength);
190 unsigned textLength = text->textLength();
    [all...]
SVGTextMetrics.cpp 37 SVGTextMetrics::SVGTextMetrics(RenderSVGInlineText* textRenderer, const TextRun& run, unsigned position, unsigned textLength)
46 int extraCharsAvailable = textLength - (position + run.length());
102 return SVGTextMetrics(text, run, position, text->textLength());
RenderSVGInlineText.cpp 139 ASSERT(m_attributes.xValues().size() == textLength());
140 ASSERT(m_attributes.yValues().size() == textLength());
142 ASSERT(position < static_cast<int>(textLength()));
173 if (!firstTextBox() || !textLength())
SVGTextChunkBuilder.h 36 // Phase three performs all modifications that have to be applied to each individual text chunk (text-anchor & textLength).
  /external/webkit/Source/WebCore/platform/text/
TextStream.cpp 88 size_t textLength = m_text.size();
89 if (stringLength > numeric_limits<size_t>::max() - textLength)
91 m_text.grow(textLength + stringLength);
93 m_text[textLength + i] = string[i];
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 176 int textLength = text.length();
177 setSelection(0, textLength);
182 setSelection(textLength);
187 int textLength = text.length();
188 setSelection(0, textLength);
190 ((Editable) getText()).delete(0, textLength);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/format/
FormatUtils.java 146 int textLength = text.length();
149 if (prefixLength == 0 || textLength < prefixLength) {
154 while (i < textLength) {
156 while (i < textLength && !Character.isLetterOrDigit(text.charAt(i))) {
160 if (i + prefixLength > textLength) {
176 while (i < textLength && Character.isLetterOrDigit(text.charAt(i))) {
  /external/chromium/webkit/glue/
regular_expression_unittest.cc 19 const int textLength;
29 int matchedLength = matches[i].textLength;
31 WebString(matches[i].text, matches[i].textLength), 0, &matchedLength));
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 98 int textLength = text.length();
107 int fittingChars = paint.breakText(text, currentOffset, textLength, true, maxWidth, null);
109 if (currentOffset + fittingChars < textLength) {
122 currentOffset = textLength;
125 if (lineCount >= maxLinesPerPage || currentOffset >= textLength) {
141 } while (currentOffset < textLength);
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontWinCE.cpp 79 int textLength() const { return m_spaces ? m_spaces : m_textRun.length(); }
222 int len = comp.textLength();
273 offset += comp.textLength();
282 return offset + comp.textLength();
287 offset += comp.textLength();
299 if (start + comp.textLength() <= cursor) {
300 start += comp.textLength();
310 pos = comp.textLength() - pos;
  /external/chromium/chrome/common/extensions/docs/images/intermediate/
overview-arch.svg 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink" version="1.1" viewBox="50 182 253 189" width="253pt" height="189pt"><metadata xmlns:dc="http://purl.org/dc/elements/1.1/"><dc:date>2010-01-29 21:50Z</dc:date><!-- Produced by OmniGraffle Professional 5.2.1 --></metadata><defs><font-face font-family="Arial" font-size="12" panose-1="2 11 7 4 2 2 2 2 2 4" units-per-em="1000" underline-position="-105.95703" underline-thickness="104.98047" slope="0" x-height="500" cap-height="750" ascent="905.27344" descent="-211.91406" font-weight="bold"><font-face-src><font-face-name name="Arial-BoldMT"/></font-face-src></font-face><font-face font-family="Arial Black" font-size="12" panose-1="2 11 10 4 2 1 2 2 2 4" units-per-em="1000" underline-position="-125" underline-thickness="60.058594" slope="0" x-height="500" cap-height="750" ascent="1100.58594" descent="-309.57031" font-weight="bold"><font-face-src><font-face-name name="Arial-Black"/></font-face-src></font-face></defs><g stroke="none" stroke-opacity="1" stroke-dasharray="none" fill="none" fill-opacity="1"><title>Canvas 1</title><g><title>browser</title><path d="M 61 263.77634 L 61 360 L 169 360 L 169 352.78146 L 169 268.32458 L 169 261.10593 L 130.804184 261.10593 L 108.29361 261.10593 C 105.357513 261.10593 102.64653 259.71793 101.18982 257.46881 L 99.355766 254.63712 C 97.899063 252.388 95.18805 251 92.25196 251 L 74.58132 251 C 72.192795 251 69.923607 251.92084 68.369164 253.52074 L 62.969704 259.07855 L 62.969704 259.07855 C 62.378513 259.68698 61.911198 260.37292 61.580395 261.10593 L 61 261.10593 Z" fill="#ccc"/><path d="M 61 263.77634 L 61 360 L 169 360 L 169 352.78146 L 169 268.32458 L 169 261.10593 L 130.804184 261.10593 L 108.29361 261.10593 C 105.357513 261.10593 102.64653 259.71793 101.18982 257.46881 L 99.355766 254.63712 C 97.899063 252.388 95.18805 251 92.25196 251 L 74.58132 251 C 72.192795 251 69.923607 251.92084 68.369164 253.52074 L 62.969704 259.07855 L 62.969704 259.07855 C 62.378513 259.68698 61.911198 260.37292 61.580395 261.10593 L 61 261.10593 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="72" y="266" width="77" height="9" fill="white"/><rect x="72" y="266" width="77" height="9" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="61" y="280" width="108" height="80" fill="white"/><rect x="61" y="280" width="108" height="80" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g><g><title>1ba</title><rect x="154" y="267" width="7.200012" height="7.200012" fill="#f8d22b"/><rect x="154" y="267" width="7.200012" height="7.200012" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></g><g><title>bg</title><rect x="126" y="193" width="108" height="20" fill="#c8c8c8"/><rect x="126" y="193" width="108" height="20" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><text transform="translate(131 198)" fill="black"><tspan font-family="Arial" font-size="12" font-weight="bold" x=".33203125" y="11" textLength="97.33594">background.html</tspan></text><line x1="180" y1="213" x2="159.18123" y2="266.53403" stroke="#bfa221" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke-dasharray="1,3"/></g><g><title>2bas</title><path d="M 184 263.77634 L 184 360 L 292 360 L 292 352.78146 L 292 268.32458 L 292 261.10593 L 253.80418 261.10593 L 231.29361 261.10593 C 228.35751 261.10593 225.64653 259.71793 224.18982 257.46881 L 222.35577 254.63712 C 220.89906 252.388 218.18805 251 215.25195 251 L 197.58133 251 C 195.1928 251 192.92361 251.92084 191.36917 253.52074 L 185.9697 259.07855 L 185.9697 259.07855 C 185.37851 259.68698 184.91119 260.37292 184.5804 261.10593 L 184 261.10593 Z" fill="#ccc"/><path d="M 184 263.77634 L 184 360 L 292 360 L 292 352.78146 L 292 268.32458 L 292 261.10593 L 253.80418 261.10593 L 231.29361 261.10593 C 228.35751 261.10593 225.64653 259.71793 224.18982 257.46881 L 222.35577 254.63712 C 220.89906 252.388 218.18805 251 215.25195 251 L 197.58133 251 C 195.1928 251 192.92361 251.92084 191.36917 253.52074 L 185.9697 259.07855 L 185.9697 259.07855 C 185.37851 259.68698 184.91119 260.37292 184.5804 261.10593 L 184 261.10593 Z" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="195" y="266" width="77" height="9" fill="white"/><rect x="195" y="266" width="77" height="9" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="184" y="280" width="108" height="80" fill="white"/><rect x="184" y="280" width="108" height="80" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="264" y="267.84" width="5.4000244" height="5.4000244" fill="#059bf4"/><rect x="264" y="267.84" width="5.4000244" height="5.4000244" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><rect x="277" y="267" width="7.200012" height="7.200012" fill="#f8d22b"/><rect x="277" y="267" width="7.200012" height="7.200012" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/><line x1="234.31448" y1="213.38872" x2="277.37302" y2="266.6113" stroke="#bfa221" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke-dasharray="1,3"/><rect x="206" y="309" width="64" height="18" fill="white"/><text transform="translate(206 309.5)" fill="#aaa"><tspan font-family="Arial Black" font-size="12" font-weight="bold" fill="#aaa" x=".23925781" y="13" textLength="12">W</tspan><tspan font-family="Arial Black" font-size="12" font-weight="bold" fill="#aaa" x="12.637695" y="13" textLength="28.007812">indo</tspan><tspan font-family="Arial Black" font-size="12" font-weight="bold" fill="#aaa" x="40.42871" y="13" textLength="23.332031">w 2</tspan></text><rect x="83" y="309" width="64" height="18" fill="white"/><text transform="translate(83 309.5)" fill="#aaa"><tspan font-family="Arial Black" font-size="12" font-weight="bold" fill="#aaa" x=".23925781" y="13" textLength="12">W</tspan><tspan font-family="Arial Black" font-size="12" font-weight="bold" fill="#aaa" x="12.637695" y="13" textLength="28.007812">indo</tspan><tspan font-family="Arial Black" font-size="12" font-weight="bold" fill="#aaa" x="40.42871" y="13" textLength="23.332031">w 1</tspan></text></g></g></svg>
  /external/icu4c/i18n/unicode/
utrans.h 441 * length of the result is returned in *textLength, if textLength is
442 * non-NULL. *textLength may be greater than textCapacity, but only
449 * @param textLength a pointer to the length of the string in text.
452 * *textLength. If textLength is NULL then the string is assumed to
471 int32_t* textLength,
482 * The actual length of the result is returned in *textLength, if
483 * textLength is non-NULL. *textLength may be greater tha
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTextAreaElement.idl 39 readonly attribute unsigned long textLength;

Completed in 1689 milliseconds

1 2 3 4 5