Lines Matching defs:mArray

58     Object[] mArray;
77 if (key.equals(mArray[index<<1])) {
84 if (key.equals(mArray[end << 1])) return end;
89 if (key.equals(mArray[i << 1])) return i;
115 if (null == mArray[index<<1]) {
122 if (null == mArray[end << 1]) return end;
127 if (null == mArray[i << 1]) return i;
142 mArray = array;
156 mArray = array;
169 mArray = new Object[size<<1];
210 mArray = ContainerHelpers.EMPTY_OBJECTS;
220 mArray = ContainerHelpers.EMPTY_OBJECTS;
242 freeArrays(mHashes, mArray, mSize);
244 mArray = ContainerHelpers.EMPTY_OBJECTS;
256 final Object[] oarray = mArray;
260 System.arraycopy(oarray, 0, mArray, 0, mSize<<1);
278 final Object[] array = mArray;
314 return index >= 0 ? (V)mArray[(index<<1)+1] : null;
323 return (K)mArray[index << 1];
332 return (V)mArray[(index << 1) + 1];
343 V old = (V)mArray[index];
344 mArray[index] = value;
375 final V old = (V)mArray[index];
376 mArray[index] = value;
388 final Object[] oarray = mArray;
394 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
404 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
408 mArray[index<<1] = key;
409 mArray[(index<<1)+1] = value;
424 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
455 final Object old = mArray[(index << 1) + 1];
459 freeArrays(mHashes, mArray, mSize);
461 mArray = ContainerHelpers.EMPTY_OBJECTS;
473 final Object[] oarray = mArray;
480 System.arraycopy(oarray, 0, mArray, 0, index << 1);
486 System.arraycopy(oarray, (index + 1) << 1, mArray, index << 1,
495 System.arraycopy(mArray, (index + 1) << 1, mArray, index << 1,
498 mArray[mSize << 1] = null;
499 mArray[(mSize << 1) + 1] = null;
560 final Object[] array = mArray;