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.java229 checkEmpty(q); in testPoll()
241 checkEmpty(q); in testTimedPoll0()
257 checkEmpty(q); in testTimedPoll()
288 checkEmpty(q); in testInterruptedTimedPoll()
312 checkEmpty(q); in testTimedPollAfterInterrupt()
327 checkEmpty(q); in testPeek()
343 checkEmpty(q); in testElement()
358 checkEmpty(q); in testRemove()
392 checkEmpty(q); in testClear()
399 checkEmpty(q); in testClear()
[all …]
DBlockingQueueTest.java335 checkEmpty(q);
358 checkEmpty(q);
DArrayBlockingQueueTest.java404 checkEmpty(q); in testTimedPoll0()
420 checkEmpty(q); in testTimedPoll()
451 checkEmpty(q); in testInterruptedTimedPoll()
786 checkEmpty(q); in testPollInExecutor()
DLinkedBlockingQueueTest.java409 checkEmpty(q); in testTimedPoll()
440 checkEmpty(q); in testInterruptedTimedPoll()
719 checkEmpty(q); in testPollInExecutor()
DLinkedBlockingDequeTest.java719 checkEmpty(q); in testTimedPoll()
750 checkEmpty(q); in testInterruptedTimedPoll()
1022 checkEmpty(q); in testTimedPollFirst()
1287 checkEmpty(q);
1664 checkEmpty(q);
DPriorityBlockingQueueTest.java365 checkEmpty(q); in testTimedPoll()
608 checkEmpty(q); in testPollInExecutor()
DDelayQueueTest.java399 checkEmpty(q); in testTimedPoll()
647 checkEmpty(q); in testPollInExecutor()
DJSR166TestCase.java1057 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()