Searched refs:canceled (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DAbstractShortCircuitTask.java53 * Indicates whether this task has been canceled. Tasks may cancel other
58 protected volatile boolean canceled; field in class:AbstractShortCircuitTask
194 * Mark this task as canceled
197 canceled = true;
201 * Queries whether this task is canceled. A task is considered canceled if
202 * it or any of its parents have been canceled.
204 * @return {@code true} if this task or any parent is canceled.
207 boolean cancel = canceled;
210 cancel = parent.canceled;
[all...]
H A DSliceOps.java626 if (canceled) {

Completed in 54 milliseconds