Lines Matching defs:it

5  * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
128 * characteristics for the spliterator to report; it is common to
158 * characteristics for the spliterator to report; it is common to
193 * characteristics for the spliterator to report; it is common to
221 * characteristics for the spliterator to report; it is common to
255 * characteristics for the spliterator to report; it is common to
283 * characteristics for the spliterator to report. (For example, if it is
321 * characteristics for the spliterator to report; it is common to
349 * characteristics for the spliterator to report. (For example, if it is
897 * so long as no methods write into the array or serialize it,
1238 * {@link #forEachRemaining(java.util.function.Consumer) forEach} if it can
1242 * This class is a useful aid for creating a spliterator when it is not
1361 * {@link #forEachRemaining(java.util.function.IntConsumer)} forEach} if it
1365 * This class is a useful aid for creating a spliterator when it is not
1471 * {@link #forEachRemaining(java.util.function.LongConsumer)} forEach} if it
1475 * This class is a useful aid for creating a spliterator when it is not
1582 * it can provide a more performant implementation.
1585 * This class is a useful aid for creating a spliterator when it is not
1695 private Iterator<? extends T> it;
1712 this.it = null;
1730 this.it = iterator;
1748 this.it = iterator;
1770 if ((i = it) == null) {
1771 i = it = collection.iterator();
1797 if ((i = it) == null) {
1798 i = it = collection.iterator();
1807 if (it == null) {
1808 it = collection.iterator();
1811 if (it.hasNext()) {
1812 action.accept(it.next());
1820 if (it == null) {
1821 it = collection.iterator();
1846 private PrimitiveIterator.OfInt it;
1862 this.it = iterator;
1879 this.it = iterator;
1886 PrimitiveIterator.OfInt i = it;
1908 it.forEachRemaining(action);
1914 if (it.hasNext()) {
1915 action.accept(it.nextInt());
1940 private PrimitiveIterator.OfLong it;
1956 this.it = iterator;
1973 this.it = iterator;
1980 PrimitiveIterator.OfLong i = it;
2002 it.forEachRemaining(action);
2008 if (it.hasNext()) {
2009 action.accept(it.nextLong());
2034 private PrimitiveIterator.OfDouble it;
2050 this.it = iterator;
2067 this.it = iterator;
2074 PrimitiveIterator.OfDouble i = it;
2096 it.forEachRemaining(action);
2102 if (it.hasNext()) {
2103 action.accept(it.nextDouble());