Home
last modified time | relevance | path

Searched refs:checkEmpty (Results 1 – 17 of 17) sorted by relevance

/libcore/ojluni/src/test/java/util/concurrent/tck/
DLinkedTransferQueueTest.java274 checkEmpty(q); in testPoll()
286 checkEmpty(q); in testTimedPoll0()
302 checkEmpty(q); in testTimedPoll()
329 checkEmpty(q); in testInterruptedTimedPoll()
352 checkEmpty(q); in testTimedPollAfterInterrupt()
367 checkEmpty(q); in testPeek()
383 checkEmpty(q); in testElement()
398 checkEmpty(q); in testRemove()
432 checkEmpty(q); in testClear()
439 checkEmpty(q); in testClear()
[all …]
DBlockingQueueTest.java373 checkEmpty(q);
396 checkEmpty(q);
DDelayQueueTest.java429 checkEmpty(q); in testTimedPoll()
467 checkEmpty(q); in testInterruptedTimedPoll()
690 checkEmpty(q); in testPollInExecutor()
DArrayBlockingQueueTest.java501 checkEmpty(q); in testTimedPoll0()
517 checkEmpty(q); in testTimedPoll()
546 checkEmpty(q); in testInterruptedTimedPoll()
873 checkEmpty(q); in testPollInExecutor()
DLinkedBlockingDequeTest.java780 checkEmpty(q); in testTimedPoll()
809 checkEmpty(q); in testInterruptedTimedPoll()
1081 checkEmpty(q); in testTimedPollFirst()
1348 checkEmpty(q);
1387 checkEmpty(q);
1750 checkEmpty(q);
DLinkedBlockingQueueTest.java468 checkEmpty(q); in testTimedPoll()
497 checkEmpty(q); in testInterruptedTimedPoll()
792 checkEmpty(q); in testPollInExecutor()
DPriorityBlockingQueueTest.java424 checkEmpty(q); in testTimedPoll()
672 checkEmpty(q); in testPollInExecutor()
DJSR166TestCase.java1880 void checkEmpty(BlockingQueue q) {
/libcore/jsr166-tests/src/test/java/jsr166/
DLinkedTransferQueueTest.java256 checkEmpty(q); in testPoll()
268 checkEmpty(q); in testTimedPoll0()
284 checkEmpty(q); in testTimedPoll()
311 checkEmpty(q); in testInterruptedTimedPoll()
334 checkEmpty(q); in testTimedPollAfterInterrupt()
349 checkEmpty(q); in testPeek()
365 checkEmpty(q); in testElement()
380 checkEmpty(q); in testRemove()
414 checkEmpty(q); in testClear()
421 checkEmpty(q); in testClear()
[all …]
DBlockingQueueTest.java349 checkEmpty(q);
372 checkEmpty(q);
DArrayBlockingQueueTest.java433 checkEmpty(q); in testTimedPoll0()
449 checkEmpty(q); in testTimedPoll()
478 checkEmpty(q); in testInterruptedTimedPoll()
829 checkEmpty(q); in testPollInExecutor()
DDelayQueueTest.java421 checkEmpty(q); in testTimedPoll()
459 checkEmpty(q); in testInterruptedTimedPoll()
682 checkEmpty(q); in testPollInExecutor()
DLinkedBlockingQueueTest.java438 checkEmpty(q); in testTimedPoll()
467 checkEmpty(q); in testInterruptedTimedPoll()
762 checkEmpty(q); in testPollInExecutor()
DLinkedBlockingDequeTest.java746 checkEmpty(q); in testTimedPoll()
775 checkEmpty(q); in testInterruptedTimedPoll()
1047 checkEmpty(q); in testTimedPollFirst()
1314 checkEmpty(q);
1353 checkEmpty(q);
1716 checkEmpty(q);
DPriorityBlockingQueueTest.java391 checkEmpty(q); in testTimedPoll()
639 checkEmpty(q); in testPollInExecutor()
DJSR166TestCase.java1771 void checkEmpty(BlockingQueue q) {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DCheckedInputStreamTest.java49 CheckedInputStream checkEmpty = new CheckedInputStream(inEmp, new CRC32()); in test_getChecksum() local
50 while (checkEmpty.read() >= 0) { in test_getChecksum()
52 assertEquals("the checkSum value of an empty file is not zero", 0, checkEmpty in test_getChecksum()