Searched defs:mChars (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java45 mChars = sub;
51 mChars = sub;
91 return mChars[off - mStart];
102 mChars, mStart - start, mEnd - start);
112 System.arraycopy(mChars, start - mStart, dest, off, end - start);
125 private char[] mChars; field in class:AlteredCharSequence
/frameworks/base/tools/aapt/
H A DXMLNode.h186 String16 mChars; member in class:XMLNode
/frameworks/base/core/java/android/widget/
H A DTextView.java2555 mCharWrapper.mChars = null;
2732 private char[] mChars; field in class:TextView.CharWrapper
2736 mChars = chars;
2742 mChars = chars;
2752 return mChars[off + mStart];
2756 return new String(mChars, mStart, mLength);
2764 return new String(mChars, start + mStart, end - start);
2772 System.arraycopy(mChars, start + mStart, buf, off, end - start);
2777 c.drawText(mChars, start + mStart, end - start, x, y, p);
2781 return p.measureText(mChars, star
[all...]

Completed in 60 milliseconds