Home | History | Annotate | Download | only in util

Lines Matching defs:mArray

82     Object[] mArray;
102 if (key.equals(mArray[index<<1])) {
109 if (key.equals(mArray[end << 1])) return end;
114 if (key.equals(mArray[i << 1])) return i;
140 if (null == mArray[index<<1]) {
147 if (null == mArray[end << 1]) return end;
152 if (null == mArray[i << 1]) return i;
170 mArray = array;
184 mArray = array;
197 mArray = new Object[size<<1];
238 mArray = ContainerHelpers.EMPTY_OBJECTS;
248 mArray = ContainerHelpers.EMPTY_OBJECTS;
257 mArray = ContainerHelpers.EMPTY_OBJECTS;
277 freeArrays(mHashes, mArray, mSize);
279 mArray = ContainerHelpers.EMPTY_OBJECTS;
291 final Object[] array = mArray;
306 final Object[] oarray = mArray;
310 System.arraycopy(oarray, 0, mArray, 0, mSize<<1);
329 final Object[] array = mArray;
367 return index >= 0 ? (V)mArray[(index<<1)+1] : null;
376 return (K)mArray[index << 1];
385 return (V)mArray[(index << 1) + 1];
396 V old = (V)mArray[index];
397 mArray[index] = value;
430 final V old = (V)mArray[index];
431 mArray[index] = value;
443 final Object[] oarray = mArray;
449 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
459 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
463 mArray[index<<1] = key;
464 mArray[(index<<1)+1] = value;
492 mArray[index] = key;
493 mArray[index+1] = value;
506 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
538 final Object old = mArray[(index << 1) + 1];
542 freeArrays(mHashes, mArray, mSize);
544 mArray = ContainerHelpers.EMPTY_OBJECTS;
556 final Object[] oarray = mArray;
563 System.arraycopy(oarray, 0, mArray, 0, index << 1);
569 System.arraycopy(oarray, (index + 1) << 1, mArray, index << 1,
578 System.arraycopy(mArray, (index + 1) << 1, mArray, index << 1,
581 mArray[mSize << 1] = null;
582 mArray[(mSize << 1) + 1] = null;
644 final Object[] array = mArray;
705 return mArray[(index<<1) + offset];