HomeSort by relevance Sort by last modified time
    Searched refs:subSequence (Results 51 - 75 of 96) sorted by null

1 23 4

  /libcore/luni/src/main/java/java/lang/
StringBuffer.java 304 * Appends the specified subsequence of the CharSequence to this buffer.
307 * "null"} is used to extract a subsequence.
581 * Inserts the specified subsequence of characters into this buffer at the
627 * Inserts the specified subsequence into this buffer at the specified
707 public synchronized CharSequence subSequence(int start, int end) {
AbstractStringBuilder.java 372 insert0(index, s.subSequence(start, end).toString());
581 * Returns the String value of the subsequence from the {@code start} index
585 * the inclusive start index to begin the subsequence.
586 * @return a String containing the subsequence.
604 * Returns the String value of the subsequence from the {@code start} index
608 * the inclusive start index to begin the subsequence.
610 * the exclusive end index to end the subsequence.
611 * @return a String containing the subsequence.
649 * Returns a {@code CharSequence} of the subsequence from the {@code start}
653 * the inclusive start index to begin the subsequence
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
LevenshteinFormatterTest.java 351 String spannedText = spanned.subSequence(mStart, mEnd).toString();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
EditingUtils.java 292 if (wordSeparators.contains(touching.subSequence(i, i + 1))) {
Suggest.java 273 sb.append(word.subSequence(1, wordLength));
Settings.java 287 builder.addWord(puncs.subSequence(i, i + 1));
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StringBuilderTest.java     [all...]
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderTest.java 310 method = "subSequence",
317 CharSequence text = builder.subSequence(0, 2);
322 builder.subSequence(2, 0);
TextUtilsTest.java     [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 355 write(text.subSequence(pos, size), i - pos + 1);
360 write(text.subSequence(pos, size), size - pos);
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldScannerTest.java 230 assertEquals(stringBuilder.subSequence(0, 1022), result);
243 assertEquals(stringBuilder.subSequence(1022, 1025), result);
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatcherTest.java     [all...]
  /frameworks/base/core/java/android/webkit/
WebTextView.java 664 String replaceButOne = mPreChange.subSequence(start,
666 String replacedString = s.subSequence(start,
705 String replace = s.subSequence(start,
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider.java 223 sb.append(srcString.subSequence(lastCharLoc, i));
229 String propertyKeyValue = srcString.subSequence(i + 1, j).toString();
244 sb.append(srcString.subSequence(lastCharLoc, srcString.length()));
    [all...]
BrowserProvider2.java     [all...]
  /frameworks/base/core/java/android/text/
TextUtils.java 243 * {@link CharSequence#subSequence(int, int) CharSequence.subSequence}
510 public CharSequence subSequence(int start, int end) {
519 return subSequence(0, length()).toString();
783 printer.println(prefix + cs.subSequence(sp.getSpanStart(o),
    [all...]
Layout.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackService.java 536 subText = subText.subSequence(1, subText.length());
  /frameworks/base/core/java/android/widget/
SpellChecker.java 262 editable.subSequence(start, end).toString();
  /packages/apps/Email/src/com/android/email/activity/
MessageListItem.java 342 mSubjectLayout = new StaticLayout(mText.subSequence(0, end),
  /cts/tests/tests/text/src/android/text/method/cts/
ArrowKeyMovementMethodTest.java     [all...]
MetaKeyKeyListenerTest.java 501 public CharSequence subSequence(int start, int end) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnJAJP.java     [all...]
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 654 CharSequence cs = cb.subSequence(0, cb.length());
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEditTextView.java     [all...]

Completed in 4559 milliseconds

1 23 4