HomeSort by relevance Sort by last modified time
    Searched defs:textLength (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/libs/hwui/tests/common/scenes/
GlyphStressAnimation.cpp 47 ssize_t textLength = 26 * 2;
58 canvas.drawText(text.get(), 0, textLength, textLength,
  /external/icu/icu4c/source/common/unicode/
chariter.h 665 int32_t textLength;
718 return textLength;
unistr.h     [all...]
  /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/icu/android_icu4j/src/main/java/android/icu/impl/
SimplePatternFormatter.java 120 int textLength = 0;
142 if (textLength > 0) {
143 sb.setCharAt(sb.length() - textLength - 1, (char)(ARG_NUM_LIMIT + textLength));
144 textLength = 0;
180 if (textLength == 0) {
185 if (++textLength == MAX_SEGMENT_LENGTH) {
186 textLength = 0;
189 if (textLength > 0) {
190 sb.setCharAt(sb.length() - textLength - 1, (char)(ARG_NUM_LIMIT + textLength))
    [all...]
Trie2.java 533 textLength = text.length();
538 private int textLength;
544 if (i < 0 || i > textLength) {
552 return index<textLength;
    [all...]
  /external/icu/icu4c/source/common/
simplepatternformatter.cpp 76 int32_t textLength = 0;
98 if (textLength > 0) {
99 compiledPattern.setCharAt(compiledPattern.length() - textLength - 1,
100 (UChar)(ARG_NUM_LIMIT + textLength));
101 textLength = 0;
135 if (textLength == 0) {
140 if (++textLength == MAX_SEGMENT_LENGTH) {
141 textLength = 0;
144 if (textLength > 0) {
145 compiledPattern.setCharAt(compiledPattern.length() - textLength - 1
    [all...]
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) {
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 267 final int textLength = mText.length();
268 if (textLength <= 0) {
271 if (offset >= textLength) {
278 while (start < textLength && mText.charAt(start) == '\n'
282 if (start >= textLength) {
286 while (end < textLength && !isEndBoundary(end)) {
294 final int textLength = mText.length();
295 if (textLength <= 0) {
302 if (end > textLength) {
303 end = textLength;
    [all...]
  /frameworks/base/core/java/android/widget/
AccessibilityIterators.java 137 final int textLength = mText.length();
138 if (textLength <= 0) {
166 final int textLength = mText.length();
167 if (textLength <= 0) {
  /external/icu/icu4c/source/i18n/
choicfmt.cpp 311 int32_t textLength = text.length();
313 for (int32_t j = 0; j < textLength; ++j) {
usrchimp.h 133 int32_t textLength; // exact length
151 int32_t textLength; // exact length
  /external/icu/icu4c/source/io/
ustdio.c 131 int32_t textLength;
185 textLength = f->fTranslit->length;
187 pos.contextLimit = textLength;
189 pos.limit = textLength;
193 &textLength,
208 textLength = f->fTranslit->length;
213 &textLength,
  /external/icu/icu4c/source/test/letest/
gendata.cpp 43 le_int32 textLength;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimplePatternFormatter.java 118 int textLength = 0;
140 if (textLength > 0) {
141 sb.setCharAt(sb.length() - textLength - 1, (char)(ARG_NUM_LIMIT + textLength));
142 textLength = 0;
178 if (textLength == 0) {
183 if (++textLength == MAX_SEGMENT_LENGTH) {
184 textLength = 0;
187 if (textLength > 0) {
188 sb.setCharAt(sb.length() - textLength - 1, (char)(ARG_NUM_LIMIT + textLength))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ValueParser.java 231 int textLength = rawValue[valueIndex + 1] & 0xff;
252 TextAttribute attr = new TextAttribute(start, textLength,
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 133 final int textLength = text.length();
134 if (getSelectionStart() != textLength || getSelectionEnd() != textLength) {
136 setSelection(textLength);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderDisplayer.java 209 final int textLength = (int) paint.measureText(name);
216 * textLength - the length of the folder's full name (can be longer than *
226 * |<-------------------------textLength------------------>| | *
236 * | |<-------------------------textLength-------------------->| *
245 textX = width - res.folderHorizontalPadding - textLength;
254 if (textLength > width - 2 * res.folderHorizontalPadding) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 352 final int textLength = outputText.length();
353 for (int index = 0; index < textLength; index = outputText.offsetByCodePoints(index, 1)) {
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextTraversalTest.java     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 390 int textLength = getAssociatedTextLength();
391 if (textLength < ((1 << 16) - (1 << 8)))
393 cMac.update((byte)(textLength >> 8));
394 cMac.update((byte)textLength);
402 cMac.update((byte)(textLength >> 24));
403 cMac.update((byte)(textLength >> 16));
404 cMac.update((byte)(textLength >> 8));
405 cMac.update((byte)textLength);
419 extra = (extra + textLength) % 16;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 150 int textLength = getTextLength(html);
153 if (textLength < 100) {
157 int hintV = textLength / hintH + 3;
  /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);
  /frameworks/base/core/java/android/text/
BoringLayout.java 252 final int textLength = text.length();
256 for (int start = 0; start < textLength; start += MAX_BUF_LEN) {
257 final int end = Math.min(start + MAX_BUF_LEN, textLength);
293 Object[] styles = sp.getSpans(0, textLength, ParagraphStyle.class);
308 line.set(paint, text, 0, textLength, Layout.DIR_LEFT_TO_RIGHT,
  /external/harfbuzz_ng/src/
hb-directwrite.cc 365 uint32_t textLength,
369 , mTextLength(textLength)
411 OUT uint32_t* textLength)
416 *textLength = 0;
420 *textLength = mTextLength - textPosition;
427 OUT uint32_t* textLength)
433 *textLength = 0;
437 *textLength = textPosition;
446 uint32_t* textLength,
453 OUT uint32_t* textLength,
    [all...]

Completed in 919 milliseconds

1 2 3 4 5 6 7 8