Home | History | Annotate | Download | only in text

Lines Matching refs:GetChars

75     public static void getChars(CharSequence s, int start, int end,
80 ((String) s).getChars(start, end, dest, destoff);
82 ((StringBuffer) s).getChars(start, end, dest, destoff);
84 ((StringBuilder) s).getChars(start, end, dest, destoff);
85 else if (s instanceof GetChars)
86 ((GetChars) s).getChars(start, end, dest, destoff);
109 if (s instanceof GetChars || c == StringBuffer.class ||
119 getChars(s, start, segend, temp, 0);
167 if (s instanceof GetChars || c == StringBuffer.class ||
177 getChars(s, segstart, end, temp, 0);
246 getChars(one, toffset, toffset + len, temp, 0);
247 getChars(two, ooffset, ooffset + len, temp, len);
277 getChars(source, start, end, temp, 0);
519 implements CharSequence, GetChars
534 getChars(start, end, buf, 0);
547 public void getChars(int start, int end, char[] dest, int destoff) {
548 TextUtils.getChars(mSource, start + mStart, end + mStart,