Searched refs:keepGoing (Results 1 – 4 of 4) sorted by relevance
136 AtomicBoolean keepGoing = new AtomicBoolean(true); in testSystemRunFinalizationReturnsEvenIfQueueIsNonEmpty() local137 createChainedFinalizer(count, keepGoing); in testSystemRunFinalizationReturnsEvenIfQueueIsNonEmpty()139 keepGoing.set(false); in testSystemRunFinalizationReturnsEvenIfQueueIsNonEmpty()143 public void createChainedFinalizer(final AtomicInteger counter, final AtomicBoolean keepGoing) { in createChainedFinalizer() argument148 if (keepGoing.get()) { in createChainedFinalizer()149 createChainedFinalizer(counter, keepGoing); // recursive! in createChainedFinalizer()
31 boolean keepGoing = true; field in ConcurrentModificationExceptionTest.CollectionModifier38 keepGoing = false; in stopNow()43 while (keepGoing) { in run()
98 boolean keepGoing(int i) { return (i % 128 != 0) || ! done; } in keepGoing() method in RacingCollections.Frobber120 for (int i = 0; keepGoing(i); i++) { in realRun()131 for (int i = 0; keepGoing(i); i++) { in realRun()150 for (int i = 0; keepGoing(i); i++) { in realRun()161 for (int i = 0; keepGoing(i); i++) { in realRun()167 for (int i = 0; keepGoing(i); i++) { in realRun()201 boolean keepGoing() { in keepGoing() method in RacingCollections.Looper220 for (Looper looper = new Looper(); looper.keepGoing(); ) in frob()
3018 boolean keepGoing = doPredicate(preds[i], callerFrame, loopVarsFrame); in transform()3019 if (!keepGoing) { in transform()