Home
last modified time | relevance | path

Searched refs:destoff (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/text/
DTextUtils.java69 char[] dest, int destoff) { in getChars() argument
73 ((String) s).getChars(start, end, dest, destoff); in getChars()
75 ((StringBuffer) s).getChars(start, end, dest, destoff); in getChars()
77 ((StringBuilder) s).getChars(start, end, dest, destoff); in getChars()
79 ((GetChars) s).getChars(start, end, dest, destoff); in getChars()
82 dest[destoff++] = s.charAt(i); in getChars()
535 public void getChars(int start, int end, char[] dest, int destoff) { in getChars() argument
537 dest, destoff); in getChars()
543 char tmp = dest[destoff + i]; in getChars()
545 dest[destoff + i] = dest[destoff + len - i - 1]; in getChars()
[all …]
DGetChars.java32 public void getChars(int start, int end, char[] dest, int destoff); in getChars() argument
DSpannableStringBuilder.java912 public void getChars(int start, int end, char[] dest, int destoff) { in getChars() argument
916 System.arraycopy(mText, start, dest, destoff, end - start); in getChars()
918 System.arraycopy(mText, start + mGapLength, dest, destoff, end - start); in getChars()
920 System.arraycopy(mText, start, dest, destoff, mGapStart - start); in getChars()
922 dest, destoff + (mGapStart - start), in getChars()
DLayout.java1748 char[] dest, int destoff, TextUtils.TruncateAt method) { in ellipsize() argument
1770 dest[destoff + a - start] = c; in ellipsize()
1829 public void getChars(int start, int end, char[] dest, int destoff) { in getChars() argument
1833 TextUtils.getChars(mText, start, end, dest, destoff); in getChars()
1836 mLayout.ellipsize(start, end, i, dest, destoff, mMethod); in getChars()