Home | History | Annotate | Download | only in stream

Lines Matching defs:SORTED

50  *       <th>{@code SORTED}</th>
135 * {@link java.util.Spliterator#DISTINCT}, {@link java.util.Spliterator#SORTED},
219 * DISTINCT SORTED ORDERED SIZED SHORT_CIRCUIT
258 * Note: The {@link java.util.Spliterator#SORTED} characteristic can define
263 * is likely to be unreliable. Therefore the {@code SORTED} characteristic
265 * {@code SORTED} flag.
268 // Matches Spliterator.SORTED
269 SORTED(1,
599 * The bit value to set or inject {@link #SORTED}.
601 public static final int IS_SORTED = SORTED.set;
604 * The bit value to clear {@link #SORTED}.
606 public static final int NOT_SORTED = SORTED.clear;
724 * If the spliterator is naturally {@code SORTED} (the associated
726 * to the {@link #SORTED} flag, otherwise the characteristic is not
735 if ((characteristics & Spliterator.SORTED) != 0 && spliterator.getComparator() != null) {
736 // Do not propagate the SORTED characteristic if it does not correspond
738 return characteristics & SPLITERATOR_CHARACTERISTICS_MASK & ~Spliterator.SORTED;