Home | History | Annotate | Download | only in util

Lines Matching defs:mArray

73     Object[] mArray;
93 if (key.equals(mArray[index])) {
100 if (key.equals(mArray[end])) return end;
105 if (key.equals(mArray[i])) return i;
131 if (null == mArray[index]) {
138 if (null == mArray[end]) return end;
143 if (null == mArray[i]) return i;
158 mArray = array;
172 mArray = array;
185 mArray = new Object[size];
226 mArray = ContainerHelpers.EMPTY_OBJECTS;
236 mArray = ContainerHelpers.EMPTY_OBJECTS;
260 freeArrays(mHashes, mArray, mSize);
262 mArray = ContainerHelpers.EMPTY_OBJECTS;
274 final Object[] oarray = mArray;
278 System.arraycopy(oarray, 0, mArray, 0, mSize);
301 return (E)mArray[index];
344 final Object[] oarray = mArray;
350 System.arraycopy(oarray, 0, mArray, 0, oarray.length);
360 System.arraycopy(mArray, index, mArray, index + 1, mSize - index);
364 mArray[index] = value;
379 System.arraycopy(array.mArray, 0, mArray, 0, N);
411 final Object old = mArray[index];
415 freeArrays(mHashes, mArray, mSize);
417 mArray = ContainerHelpers.EMPTY_OBJECTS;
429 final Object[] oarray = mArray;
436 System.arraycopy(oarray, 0, mArray, 0, index);
442 System.arraycopy(oarray, index + 1, mArray, index, mSize - index);
450 System.arraycopy(mArray, index + 1, mArray, index, mSize - index);
452 mArray[mSize] = null;
469 System.arraycopy(mArray, 0, result, 0, mSize);
480 System.arraycopy(mArray, 0, array, 0, mSize);
582 return mArray[index];
663 if (!collection.contains(mArray[i])) {