Searched defs:SIZED (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DSpliterator.java51 * {@link #DISTINCT}, {@link #SORTED}, {@link #SIZED}, {@link #NONNULL},
55 * report {@code SIZED}, a Spliterator for a {@link Set} would report
85 * {@link #SIZED}, this value corresponds exactly to the number of elements
104 * {@link #estimateSize()} for {@code SIZED} spliterators) are only valid before
239 * return ORDERED | SIZED | IMMUTABLE | SUBSIZED;
377 * <p>If this Spliterator is {@link #SIZED} and has not yet been partially
399 * Spliterator is {@link #SIZED}, else {@code -1}.
402 * if the Spliterator reports a characteristic of {@code SIZED}, and
408 return (characteristics() & SIZED) == 0 ? -1L : estimateSize();
414 * #ORDERED}, {@link #DISTINCT}, {@link #SORTED}, {@link #SIZED},
521 public static final int SIZED = 0x00000040; field in interface:Spliterator
[all...]
/libcore/ojluni/src/main/java/java/util/stream/
H A DStreamOpFlag.java52 * <th>{@code SIZED}</th>
137 * {@link java.util.Spliterator#SIZED}. A spliterator characteristics bit set
194 * {@code SIZED.isKnown(flags)} returns true then the stream size remains
219 * DISTINCT SORTED ORDERED SIZED SHORT_CIRCUIT
296 // Matches Spliterator.SIZED
297 SIZED(3, enum constant in enum:StreamOpFlag
619 * The bit value to set {@link #SIZED}.
621 public static final int IS_SIZED = SIZED.set;
624 * The bit value to clear {@link #SIZED}.
626 public static final int NOT_SIZED = SIZED
[all...]

Completed in 69 milliseconds