Home | History | Annotate | Download | only in util

Lines Matching refs:mSize

31     private int mSize;
49 mSize = 0;
56 add(mSize, value);
65 if (index < 0 || index > mSize) {
71 if (mSize - index != 0) {
72 System.arraycopy(mValues, index, mValues, index + 1, mSize - index);
76 mSize++;
83 final int count = values.mSize;
86 System.arraycopy(values.mValues, 0, mValues, mSize, count);
87 mSize += count;
94 final int currentSize = mSize;
110 mSize = 0;
129 if (index >= mSize) {
130 throw new ArrayIndexOutOfBoundsException(mSize, index);
140 final int n = mSize;
153 if (index >= mSize) {
154 throw new ArrayIndexOutOfBoundsException(mSize, index);
156 System.arraycopy(mValues, index + 1, mValues, index, mSize - index - 1);
157 mSize--;
164 return mSize;