Home | History | Annotate | Download | only in support

Lines Matching refs:it

72         Iterator<Integer> it = col.iterator();
74 while (it.hasNext()) {
75 ss.add(it.next());
77 it = ss.iterator();
78 for (int counter = 0; it.hasNext(); counter++) {
79 int nextValue = it.next().intValue();
94 for (int counter = 0; it.hasNext(); counter++) {
97 objArray[counter] == it.next());
103 for (int counter = 0; it.hasNext(); counter++) {
106 objArray[counter] == it.next());