Home
last modified time | relevance | path

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

/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()