Home | History | Annotate | Download | only in util

Lines Matching refs:mValues

49     private long[] mValues;
69 mValues = EmptyArray.LONG;
72 mValues = new long[mKeys.length];
83 clone.mValues = mValues.clone();
108 return mValues[i];
128 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
141 mValues[i] = value;
146 mValues = GrowingArrayUtils.insert(mValues, mSize, i, value);
185 return mValues[index];
207 if (mValues[i] == value)
231 mValues = GrowingArrayUtils.append(mValues, mSize, value);