Searched refs:testQueue (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/util/concurrent/ConcurrentQueues/
H A DOfferRemoveLoops.java52 testQueue(new LinkedBlockingQueue(10));
53 testQueue(new LinkedBlockingQueue());
54 testQueue(new LinkedBlockingDeque(10));
55 testQueue(new LinkedBlockingDeque());
56 testQueue(new ArrayBlockingQueue(10));
57 testQueue(new PriorityBlockingQueue(10));
58 testQueue(new ConcurrentLinkedDeque());
59 testQueue(new ConcurrentLinkedQueue());
60 testQueue(new LinkedTransferQueue());
67 void testQueue(fina method in class:OfferRemoveLoops
[all...]
/openjdk7/jdk/test/java/util/concurrent/BlockingQueue/
H A DLastElement.java36 testQueue(new LinkedBlockingQueue<Integer>());
37 testQueue(new LinkedBlockingDeque<Integer>());
38 testQueue(new ArrayBlockingQueue<Integer>(10, true));
39 testQueue(new ArrayBlockingQueue<Integer>(10, false));
40 testQueue(new LinkedTransferQueue<Integer>());
41 testQueue(new PriorityBlockingQueue<Integer>());
44 void testQueue(BlockingQueue<Integer> q) throws Throwable { method in class:LastElement
H A DInterrupt.java66 static void testQueue(final BlockingQueue<Object> q) { method in class:Interrupt
118 testQueue(new SynchronousQueue<Object>());
119 testQueue(new ArrayBlockingQueue<Object>(1,false));
120 testQueue(new ArrayBlockingQueue<Object>(1,true));
121 testQueue(new LinkedBlockingQueue<Object>(1));
122 testQueue(new LinkedBlockingDeque<Object>(1));
/openjdk7/jdk/test/java/util/Collection/
H A DMOAT.java425 private static void testQueue(Queue<Integer> q) { method in class:MOAT
730 testQueue((Queue<Integer>)c);

Completed in 43 milliseconds