Home | History | Annotate | Download | only in latin

Lines Matching refs:mLength

24     private int mLength;
31 if (index < mLength) {
34 throw new ArrayIndexOutOfBoundsException("length=" + mLength + "; index=" + index);
38 if (index < mLength) {
41 mLength = index;
47 final int currentLength = mLength;
50 mLength = currentLength + 1;
78 return mLength;
83 mLength = newLength;
89 mLength = 0;
99 mLength = ip.mLength;
103 final int newCapacity = calculateCapacity(ip.mLength);
108 System.arraycopy(ip.mArray, 0, mArray, 0, ip.mLength);
109 mLength = ip.mLength;
116 final int currentLength = mLength;
120 mLength = newLength;
130 if (mLength < endPos) {
131 mLength = endPos;
138 for (int i = 0; i < mLength; i++) {