Searched defs:NORMAL (Results 1 - 4 of 4) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DMockAbstractPreferences.java28 static final int NORMAL = 0; field in class:MockAbstractPreferences
36 int result = NORMAL;
100 case NORMAL:
/libcore/luni/src/main/java/java/util/concurrent/
H A DFutureTask.java59 * NEW -> COMPLETING -> NORMAL
67 private static final int NORMAL = 2; field in class:FutureTask
90 if (s == NORMAL)
204 U.putOrderedInt(this, STATE, NORMAL); // final state
H A DForkJoinTask.java195 * DONE_MASK) holds value NORMAL, CANCELLED, or EXCEPTIONAL. Tasks
215 static final int NORMAL = 0xf0000000; // must be negative field in class:ForkJoinTask
216 static final int CANCELLED = 0xc0000000; // must be < NORMAL
225 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
256 s = setCompletion(NORMAL);
675 if ((s = doJoin() & DONE_MASK) != NORMAL)
690 if ((s = doInvoke() & DONE_MASK) != NORMAL)
715 if ((s1 = t1.doInvoke() & DONE_MASK) != NORMAL)
717 if ((s2 = t2.doJoin() & DONE_MASK) != NORMAL)
747 else if (t.doInvoke() < NORMAL
[all...]
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfo.java44 private static final int[] NORMAL = new int[] { field in class:ZoneInfo
210 int[] mlen = isLeap ? LEAP : NORMAL;

Completed in 242 milliseconds