Home | History | Annotate | Download | only in stream

Lines Matching defs:it

5  * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
126 Iterator<Integer> it = sb.iterator();
128 list2.add(it.next());
129 assertFalse(it.hasNext());
201 PrimitiveIterator.OfInt it = sb.iterator();
203 list2.add(it.nextInt());
204 assertFalse(it.hasNext());
276 PrimitiveIterator.OfLong it = sb.iterator();
278 list2.add(it.nextLong());
279 assertFalse(it.hasNext());
352 PrimitiveIterator.OfDouble it = sb.iterator();
354 list2.add(it.nextDouble());
355 assertFalse(it.hasNext());