Home | History | Annotate | Download | only in light

Lines Matching refs:listSize

51     private int listSize;
82 listSize = 0;
113 if (listSize == list.length) {
116 list[listSize] = l;
117 distToOwner[listSize++] = Float.NEGATIVE_INFINITY;
126 if (index >= listSize || index < 0)
129 listSize --;
130 if (index == listSize){
131 list[listSize] = null;
135 for (int i = index; i < listSize; i++){
138 list[listSize] = null;
147 for (int i = 0; i < listSize; i++){
159 return listSize;
167 if (num >= listSize || num < 0)
177 if (listSize == 0)
180 for (int i = 0; i < listSize; i++)
186 listSize = 0;
201 if (listSize > 1) {
211 for (int i = 0; i < listSize; i++){
217 SortUtil.msort(tlist, list, 0, listSize - 1, c);
233 while (list.length <= local.listSize){
238 System.arraycopy(local.list, 0, list, 0, local.listSize);
239 for (int i = 0; i < local.listSize; i++){
247 int sz = local.listSize + parent.listSize;
251 for (int i = 0; i < parent.listSize; i++){
252 int p = i + local.listSize;
257 listSize = local.listSize + parent.listSize;
259 listSize = local.listSize;
311 for (int i = 0; i < listSize; i++){
322 listSize = lights.size();
325 int arraySize = Math.max(DEFAULT_SIZE, listSize);
329 for (int i = 0; i < listSize; i++){