Home | History | Annotate | Download | only in text

Lines Matching refs:GetChars

59     public static void getChars(CharSequence s, int start, int end,
64 ((String) s).getChars(start, end, dest, destoff);
66 ((StringBuffer) s).getChars(start, end, dest, destoff);
68 ((StringBuilder) s).getChars(start, end, dest, destoff);
69 else if (s instanceof GetChars)
70 ((GetChars) s).getChars(start, end, dest, destoff);
93 if (s instanceof GetChars || c == StringBuffer.class ||
103 getChars(s, start, segend, temp, 0);
151 if (s instanceof GetChars || c == StringBuffer.class ||
161 getChars(s, segstart, end, temp, 0);
225 getChars(one, toffset, toffset + len, temp, 0);
226 getChars(two, ooffset, ooffset + len, temp, len);
256 getChars(source, start, end, temp, 0);
498 implements CharSequence, GetChars
513 getChars(start, end, buf, 0);
526 public void getChars(int start, int end, char[] dest, int destoff) {
527 TextUtils.getChars(mSource, start + mStart, end + mStart,