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

/libcore/luni/src/main/java/java/util/concurrent/
H A DCountedCompleter.java11 * triggered and there are no remaining pending actions.
17 * except that multiple <em>pending</em> completions may be necessary
20 * Unless initialized otherwise, the {@linkplain #getPendingCount pending
24 * #tryComplete}, if the pending action count is nonzero, it is
31 * internal bookkeeping. In particular, the identities of pending
33 * subclasses that do record some or all pending tasks or their
124 * setPendingCount(2); // must set pending count before fork
139 * {@code tryComplete}) the pending count is set to one:
146 * setPendingCount(1); // only one pending
160 * and add a pending coun
389 volatile int pending; field in class:CountedCompleter
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java42 private boolean pending; field in class:KXmlSerializer
56 if (!pending)
60 pending = false;
245 boolean p = pending;
246 pending = false;
248 pending = p;
324 pending = false;
418 pending = true;
428 if (!pending)
437 // pending
[all...]

Completed in 195 milliseconds