Home | History | Annotate | Download | only in util

Lines Matching refs:mValues

44     private long[] mValues;
64 mValues = ContainerHelpers.EMPTY_LONGS;
68 mValues = new long[initialCapacity];
79 clone.mValues = mValues.clone();
104 return mValues[i];
124 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
137 mValues[i] = value;
147 System.arraycopy(mValues, i, mValues, i + 1, mSize - i);
151 mValues[i] = value;
190 return mValues[index];
212 if (mValues[i] == value)
241 mValues[pos] = value;
252 System.arraycopy(mValues, 0, nvalues, 0, mValues.length);
255 mValues = nvalues;