Home | History | Annotate | Download | only in text

Lines Matching defs:mEndIndex

28     private final int mBeginIndex, mEndIndex;
39 mEndIndex = end;
48 if (mBeginIndex == mEndIndex) {
49 mIndex = mEndIndex;
52 mIndex = mEndIndex - 1;
58 return (mIndex == mEndIndex) ? DONE : mCharSeq.charAt(mIndex);
63 if (mIndex >= mEndIndex) {
64 mIndex = mEndIndex;
81 if (mBeginIndex <= position && position <= mEndIndex) {
94 return mEndIndex;