Home | History | Annotate | Download | only in utils

Lines Matching defs:mArray

23     private int[] mArray;
32 return mArray[index];
39 mArray[index] = val;
49 mArray[currentLength] = val;
54 * Calculate the new capacity of {@code mArray}.
55 * @param minimumCapacity the minimum capacity that the {@code mArray} should have.
56 * @return the new capacity that the {@code mArray} should have. Returns zero when there is no
57 * need to expand {@code mArray}.
60 final int currentCapcity = mArray.length;
73 mArray = Arrays.copyOf(mArray, newCapacity);
88 mArray = new int[capacity];
93 return mArray;
98 mArray = ip.mArray;
106 mArray = new int[newCapacity];
108 System.arraycopy(ip.mArray, 0, mArray, 0, ip.mLength);
119 System.arraycopy(src.mArray, startPos, mArray, currentLength, length);
129 Arrays.fill(mArray, startPos, endPos, value);
140 System.arraycopy(mArray, elementCount, mArray, 0, mLength - elementCount);
151 sb.append(mArray[i]);