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 DTextUtils.java63 public static void getChars(CharSequence s, int start, int end, method in class:TextUtils
68 ((String) s).getChars(start, end, dest, destoff);
70 ((StringBuffer) s).getChars(start, end, dest, destoff);
72 ((StringBuilder) s).getChars(start, end, dest, destoff);
74 ((GetChars) s).getChars(start, end, dest, destoff);
107 getChars(s, start, segend, temp, 0);
165 getChars(s, segstart, end, temp, 0);
229 getChars(one, toffset, toffset + len, temp, 0);
230 getChars(two, ooffset, ooffset + len, temp, len);
260 getChars(sourc
530 public void getChars(int start, int end, char[] dest, int destoff) { method in class:TextUtils.Reverser
[all...]
H A DLayout.java1783 getChars(off, off + 1, buf, 0);
1790 public void getChars(int start, int end, char[] dest, int destoff) { method in class:Layout.Ellipsizer
1794 TextUtils.getChars(mText, start, end, dest, destoff);
1807 getChars(start, end, s, 0);
1814 getChars(0, length(), s, 0);
1852 getChars(start, end, s, 0);
/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.java8572 public void getChars(int start, int end, char[] buf, int off) { method in class:TextView.CharWrapper

Completed in 1697 milliseconds