Home | History | Annotate | Download | only in text

Lines Matching defs:mChars

35     char[] mChars;
103 if (mChars == null || mChars.length < len) {
104 mChars = ArrayUtils.newUnpaddedCharArray(len);
106 TextUtils.getChars(text, start, end, mChars, 0);
120 mChars[j] = '\uFFFC'; // object replacement character
128 TextUtils.doesNotNeedBidi(mChars, 0, len)) {
145 boolean isRtl = textDir.isRtl(mChars, 0, len);
148 mDir = AndroidBidi.bidi(bidiRequest, mChars, mLevels, len, false);
163 return paint.getTextRunAdvances(mChars, p, len, p, len, isRtl, mWidths, p);
172 paint.getTextRunAdvances(mChars, q, i - q, q, i - q, isRtl, mWidths, q);
237 while (i > 0 && mChars[i - 1] == ' ') i--;
246 while (i < limit - 1 && mChars[i + 1] == ' ') i++;