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.java71 public final void getChars(int start, int end, char[] dest, int off) { method in class:SpannableStringInternal
72 mText.getChars(start, end, dest, off);
H A DSpannableStringBuilder.java64 TextUtils.getChars(text, start, end, mText, 0);
360 TextUtils.getChars(cs, csStart, csEnd, mText, start);
914 public void getChars(int start, int end, char[] dest, int destoff) { method in class:SpannableStringBuilder
915 checkRange("getChars", start, end);
937 getChars(0, len, buf, 0);
948 getChars(start, end, buf, 0);
1123 getChars(start, end, buf, 0);
1147 getChars(contextStart, contextEnd, buf, 0);
1169 getChars(start, end, buf, 0);
1193 getChars(star
[all...]
H A DLayout.java1836 getChars(off, off + 1, buf, 0);
1843 public void getChars(int start, int end, char[] dest, int destoff) { method in class:Layout.Ellipsizer
1847 TextUtils.getChars(mText, start, end, dest, destoff);
1860 getChars(start, end, s, 0);
1867 getChars(0, length(), s, 0);
1905 getChars(start, end, s, 0);
H A DTextUtils.java70 public static void getChars(CharSequence s, int start, int end, method in class:TextUtils
75 ((String) s).getChars(start, end, dest, destoff);
77 ((StringBuffer) s).getChars(start, end, dest, destoff);
79 ((StringBuilder) s).getChars(start, end, dest, destoff);
81 ((GetChars) s).getChars(start, end, dest, destoff);
114 getChars(s, start, segend, temp, 0);
172 getChars(s, segstart, end, temp, 0);
241 getChars(one, toffset, toffset + len, temp, 0);
242 getChars(two, ooffset, ooffset + len, temp, len);
272 getChars(sourc
542 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.java180 getChars(start, end, buf, 0);
188 public void getChars(int start, int end, char[] dest, int off) { method in class:PasswordTransformationMethod.PasswordCharSequence
189 TextUtils.getChars(mSource, start, end, dest, off);
/frameworks/base/core/java/android/widget/
H A DTextView.java9219 public void getChars(int start, int end, char[] buf, int off) { method in class:TextView.CharWrapper

Completed in 103 milliseconds