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.java61 TextUtils.getChars(text, start, end, mText, 0);
341 TextUtils.getChars(cs, csStart, csEnd, mText, start);
912 public void getChars(int start, int end, char[] dest, int destoff) { method in class:SpannableStringBuilder
913 checkRange("getChars", start, end);
935 getChars(0, len, buf, 0);
946 getChars(start, end, buf, 0);
1121 getChars(start, end, buf, 0);
1145 getChars(contextStart, contextEnd, buf, 0);
1167 getChars(start, end, buf, 0);
1191 getChars(star
[all...]
H A DLayout.java1822 getChars(off, off + 1, buf, 0);
1829 public void getChars(int start, int end, char[] dest, int destoff) { method in class:Layout.Ellipsizer
1833 TextUtils.getChars(mText, start, end, dest, destoff);
1846 getChars(start, end, s, 0);
1853 getChars(0, length(), s, 0);
1891 getChars(start, end, s, 0);
H A DTextUtils.java66 public static void getChars(CharSequence s, int start, int end, method in class:TextUtils
71 ((String) s).getChars(start, end, dest, destoff);
73 ((StringBuffer) s).getChars(start, end, dest, destoff);
75 ((StringBuilder) s).getChars(start, end, dest, destoff);
77 ((GetChars) s).getChars(start, end, dest, destoff);
110 getChars(s, start, segend, temp, 0);
168 getChars(s, segstart, end, temp, 0);
232 getChars(one, toffset, toffset + len, temp, 0);
233 getChars(two, ooffset, ooffset + len, temp, len);
263 getChars(sourc
533 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.java8864 public void getChars(int start, int end, char[] buf, int off) { method in class:TextView.CharWrapper

Completed in 166 milliseconds