Home | History | Annotate | Download | only in text

Lines Matching refs:GetChars

66     public static void getChars(CharSequence s, int start, int end,
71 ((String) s).getChars(start, end, dest, destoff);
73 ((StringBuffer) s).getChars(start, end, dest, destoff);
75 ((StringBuilder) s).getChars(start, end, dest, destoff);
76 else if (s instanceof GetChars)
77 ((GetChars) s).getChars(start, end, dest, destoff);
100 if (s instanceof GetChars || c == StringBuffer.class ||
110 getChars(s, start, segend, temp, 0);
158 if (s instanceof GetChars || c == StringBuffer.class ||
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(source, start, end, temp, 0);
505 implements CharSequence, GetChars
520 getChars(start, end, buf, 0);
533 public void getChars(int start, int end, char[] dest, int destoff) {
534 TextUtils.getChars(mSource, start + mStart, end + mStart,