Lines Matching defs:mArray

71     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;
168 mArray = array;
182 mArray = array;
195 mArray = new Object[size<<1];
237 mArray = ContainerHelpers.EMPTY_OBJECTS;
247 mArray = ContainerHelpers.EMPTY_OBJECTS;
270 final Object[] oarray = mArray;
273 mArray = ContainerHelpers.EMPTY_OBJECTS;
290 final Object[] oarray = mArray;
294 System.arraycopy(oarray, 0, mArray, 0, osize<<1);
325 final Object[] array = mArray;
361 return index >= 0 ? (V)mArray[(index<<1)+1] : null;
370 return (K)mArray[index << 1];
379 return (V)mArray[(index << 1) + 1];
390 V old = (V)mArray[index];
391 mArray[index] = value;
423 final V old = (V)mArray[index];
424 mArray[index] = value;
436 final Object[] oarray = mArray;
446 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
456 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
466 mArray[index<<1] = key;
467 mArray[(index<<1)+1] = value;
482 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
513 final Object old = mArray[(index << 1) + 1];
519 freeArrays(mHashes, mArray, osize);
521 mArray = ContainerHelpers.EMPTY_OBJECTS;
534 final Object[] oarray = mArray;
544 System.arraycopy(oarray, 0, mArray, 0, index << 1);
550 System.arraycopy(oarray, (index + 1) << 1, mArray, index << 1,
558 System.arraycopy(mArray, (index + 1) << 1, mArray, index << 1,
561 mArray[nsize << 1] = null;
562 mArray[(nsize << 1) + 1] = null;
652 final Object[] array = mArray;