Home | History | Annotate | Download | only in util

Lines Matching refs:thisSize

3225                 int thisSize = size();
3226 Object[] array = new Object[thisSize];
3228 for (int i = 0; i < thisSize; i++) {
3236 int thisSize = size();
3237 if (array.length < thisSize) {
3239 array = (T[]) Array.newInstance(ct, thisSize);
3242 for (int i = 0; i < thisSize; i++) {
3245 if (thisSize < array.length) {
3246 array[thisSize] = null;