Home | History | Annotate | Download | only in util

Lines Matching refs:mValues

47     private long[] mValues;
67 mValues = EmptyArray.LONG;
69 mValues = ArrayUtils.newUnpaddedLongArray(initialCapacity);
70 mKeys = new int[mValues.length];
81 clone.mValues = mValues.clone();
106 return mValues[i];
126 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
139 mValues[i] = value;
144 mValues = GrowingArrayUtils.insert(mValues, mSize, i, value);
183 return mValues[index];
205 if (mValues[i] == value)
229 mValues = GrowingArrayUtils.append(mValues, mSize, value);