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

1 2 3 4 5

  /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))) {
  /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...]
  /external/icu/icu4c/source/common/
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/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;
  /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/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityTextTraversalTest.java     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 388 int textLength = getAssociatedTextLength();
389 if (textLength < ((1 << 16) - (1 << 8)))
391 cMac.update((byte)(textLength >> 8));
392 cMac.update((byte)textLength);
400 cMac.update((byte)(textLength >> 24));
401 cMac.update((byte)(textLength >> 16));
402 cMac.update((byte)(textLength >> 8));
403 cMac.update((byte)textLength);
417 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);
  /external/icu/icu4c/source/test/cintltst/
reapits.c 453 int32_t textLength;
462 result = uregex_getText(re, &textLength, &status);
464 TEST_ASSERT(textLength == -1);
469 result = uregex_getText(re, &textLength, &status);
471 TEST_ASSERT(textLength == 7);
476 result = uregex_getText(re, &textLength, &status);
478 TEST_ASSERT(textLength == 4);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie2.java 541 textLength = text.length();
546 private int textLength;
552 if (i < 0 || i > textLength) {
560 return index<textLength;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputConnection.java     [all...]
  /frameworks/base/core/java/android/text/
Layout.java 300 int textLength = buf.length();
314 spanEnd = sp.nextSpanTransition(start, textLength,
436 int textLength = buffer.length();
437 mLineBackgroundSpans.init(buffer, 0, textLength);
460 spanEnd = mLineBackgroundSpans.getNextTransition(start, textLength);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 577 size_t textLength = env->GetArrayLength(text);
578 if ((index | count) < 0 || (size_t)(index + count) > textLength) {
604 size_t textLength = env->GetStringLength(text);
606 if ((start | count) < 0 || (size_t)end > textLength) {
633 size_t textLength = env->GetStringLength(text);
634 if (textLength == 0) {
644 MinikinUtils::doLayout(&layout, paint, bidiFlags, typeface, textArray, 0, textLength, textLength);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSet.java     [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidatesViewManager.java 879 int textLength = measureText(word.candidate, 0, word.candidate.length());
881 textLength += template.getPaddingLeft() + template.getPaddingRight();
    [all...]
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEditTextView.java     [all...]

Completed in 850 milliseconds

1 2 3 4 5