Searched defs:getChars (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/text/
H A DGetChars.java21 * getChars() method like the one in String that is faster than
28 * Exactly like String.getChars(): copy chars <code>start</code>
32 public void getChars(int start, int end, char[] dest, int destoff); method in interface:GetChars
H A DAlteredCharSequence.java105 public void getChars(int start, int end, char[] dest, int off) { method in class:AlteredCharSequence
106 TextUtils.getChars(mSource, start, end, dest, off);
119 getChars(0, len, ret, 0);
H A DSpannableStringInternal.java69 public final void getChars(int start, int end, char[] dest, int off) { method in class:SpannableStringInternal
70 mText.getChars(start, end, dest, off);
H A DSpannableStringBuilder.java59 TextUtils.getChars(text, start, end, mText, 0);
325 TextUtils.getChars(tb, tbstart, tbend, mText, start);
846 public void getChars(int start, int end, char[] dest, int destoff) { method in class:SpannableStringBuilder
847 checkRange("getChars", start, end);
869 getChars(0, len, buf, 0);
1051 getChars(start, end, buf, 0);
1073 getChars(start, end, buf, 0);
1098 getChars(start, end, buf, 0);
H A DLayout.java1393 TextUtils.getChars(text, start, end, buf, 0);
1476 TextUtils.getChars(text, start, end, buf, 0);
1622 TextUtils.getChars(text, start, end, buf, 0);
1852 getChars(off, off + 1, buf, 0);
1859 public void getChars(int start, int end, char[] dest, int destoff) { method in class:Layout.Ellipsizer
1863 TextUtils.getChars(mText, start, end, dest, destoff);
1876 getChars(start, end, s, 0);
1882 getChars(0, length(), s, 0);
1919 getChars(start, end, s, 0);
H A DTextUtils.java58 public static void getChars(CharSequence s, int start, int end, method in class:TextUtils
63 ((String) s).getChars(start, end, dest, destoff);
65 ((StringBuffer) s).getChars(start, end, dest, destoff);
67 ((StringBuilder) s).getChars(start, end, dest, destoff);
69 ((GetChars) s).getChars(start, end, dest, destoff);
102 getChars(s, start, segend, temp, 0);
160 getChars(s, segstart, end, temp, 0);
224 getChars(one, toffset, toffset + len, temp, 0);
225 getChars(two, ooffset, ooffset + len, temp, len);
255 getChars(sourc
513 public void getChars(int start, int end, char[] dest, int destoff) { method in class:TextUtils.Reverser
[all...]
/frameworks/base/core/java/android/text/method/
H A DReplacementTransformationMethod.java139 getChars(start, end, c, 0);
146 getChars(0, length(), c, 0);
150 public void getChars(int start, int end, char[] dest, int off) { method in class:ReplacementTransformationMethod.ReplacementCharSequence
151 TextUtils.getChars(mSource, start, end, dest, off);
H A DPasswordTransformationMethod.java181 getChars(start, end, buf, 0);
189 public void getChars(int start, int end, char[] dest, int off) { method in class:PasswordTransformationMethod.PasswordCharSequence
190 TextUtils.getChars(mSource, start, end, dest, off);
/frameworks/base/core/java/android/widget/
H A DTextView.java2817 public void getChars(int start, int end, char[] buf, int off) { method in class:TextView.CharWrapper

Completed in 5139 milliseconds