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);
288 final Object[] array = mArray;
324 return index >= 0 ? (V)mArray[(index<<1)+1] : null;
333 return (K)mArray[index << 1];
342 return (V)mArray[(index << 1) + 1];
353 V old = (V)mArray[index];
354 mArray[index] = value;
385 final V old = (V)mArray[index];
386 mArray[index] = value;
398 final Object[] oarray = mArray;
404 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
414 System.arraycopy(mArray, index << 1, mArray, (index + 1) << 1, (mSize - index) << 1);
418 mArray[index<<1] = key;
419 mArray[(index<<1)+1] = value;
434 System.arraycopy(array.mArray, 0, mArray, 0, N<<1);
465 final Object old = mArray[(index << 1) + 1];
469 freeArrays(mHashes, mArray, mSize);
471 mArray = ContainerHelpers.EMPTY_OBJECTS;
483 final Object[] oarray = mArray;
490 System.arraycopy(oarray, 0, mArray, 0, index << 1);
496 System.arraycopy(oarray, (index + 1) << 1, mArray, index << 1,
505 System.arraycopy(mArray, (index + 1) << 1, mArray, index << 1,
508 mArray[mSize << 1] = null;
509 mArray[(mSize << 1) + 1] = null;
595 final Object[] array = mArray;