Lines Matching refs:mText

55         mText = new char[len];
59 TextUtils.getChars(text, start, end, mText, 0);
117 return mText[where + mGapLength];
119 return mText[where];
126 return mText.length - mGapLength;
133 int after = mText.length - (mGapStart + mGapLength);
135 System.arraycopy(mText, 0, newtext, 0, mGapStart);
136 System.arraycopy(mText, mText.length - after,
141 mSpanStarts[i] += newlen - mText.length;
143 mSpanEnds[i] += newlen - mText.length;
146 int oldlen = mText.length;
147 mText = newtext;
148 mGapLength += mText.length - oldlen;
163 System.arraycopy(mText, where,
164 mText, mGapStart + mGapLength - overlap, overlap);
168 System.arraycopy(mText, where + mGapLength - overlap,
169 mText, mGapStart, overlap);
316 resizeFor(mText.length - mGapLength +
325 TextUtils.getChars(tb, tbstart, tbend, mText, start);
359 boolean atend = (mGapStart + mGapLength == mText.length);
460 mText[mGapStart] = ' ';
850 System.arraycopy(mText, start, dest, destoff, end - start);
852 System.arraycopy(mText, start + mGapLength,
855 System.arraycopy(mText, start, dest, destoff, mGapStart - start);
856 System.arraycopy(mText, mGapStart + mGapLength,
975 System.out.print(isprint(mText[i]) ? mText[i] : '.');
982 System.out.print(isprint(mText[i]) ? mText[i] : '.');
986 for (int i = mGapStart + mGapLength; i < mText.length; i++) {
989 System.out.print(isprint(mText[i]) ? mText[i] : '.');
995 for (int i = 0; i < mText.length + 1; i++) {
1045 c.drawText(mText, start, end - start, x, y, p);
1047 c.drawText(mText, start + mGapLength, end - start, x, y, p);
1067 ret = p.measureText(mText, start, end - start);
1069 ret = p.measureText(mText, start + mGapLength, end - start);
1091 ret = p.getTextWidths(mText, start, end - start, widths);
1093 ret = p.getTextWidths(mText, start + mGapLength, end - start,
1123 private char[] mText;