/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | StackTest.java | 43 s.pop(); in test_empty() 65 s.pop(); in test_peek() 66 assertTrue("Peek did not return top item after a pop", s.pop() == item2); in test_peek() 70 s.pop(); in test_peek() 71 s.pop(); in test_peek() 73 s.pop(); in test_peek() 92 lastPopped = s.pop(); in test_pop() 100 lastPopped = s.pop(); in test_pop() 109 lastPopped = s.pop(); in test_pop() 117 lastPopped = s.pop(); in test_pop() [all …]
|
D | EmptyStackExceptionTest.java | 35 s.pop(); in test_Constructor()
|
D | LinkedListTest.java | 816 assertEquals(testObjOne, testList.pop()); in test_pop() 818 assertEquals(testObjTwo, testList.pop()); in test_pop() 819 assertEquals(testObjThree, testList.pop()); in test_pop() 823 assertNull(testList.pop()); in test_pop() 825 testList.pop(); in test_pop()
|
D | ArrayDequeTest.java | 542 assertEquals(testObjOne, testQue.pop()); in test_pop() 544 assertEquals(testObjTwo, testQue.pop()); in test_pop() 545 assertEquals(testObjThree, testQue.pop()); in test_pop() 548 testQue.pop(); in test_pop()
|
D | CollectionsTest.java | 2159 assertEquals(testInt[i], deque.pop()); in test_asLifoQueue()
|
/libcore/support/src/test/java/tests/util/ |
D | CallVerificationStack.java | 200 public Object pop() { in pop() method in CallVerificationStack 201 this.callStack.pop(); in pop() 202 return super.pop(); in pop() 211 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); in popBoolean() 222 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); in popChar() 233 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); in popDouble() 244 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); in popFloat() 255 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); in popInt() 266 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); in popLong() 277 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); in popShort()
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | IntegerBenchmark.java | 51 t += pop((long) i); in timeLongBitCount_BitSet() 56 private static int pop(long l) { in pop() method in IntegerBenchmark
|
/libcore/ojluni/src/main/java/java/util/ |
D | Stack.java | 80 public synchronized E pop() { in pop() method in Stack
|
D | Deque.java | 512 E pop(); in pop() method
|
D | ArrayDeque.java | 497 public E pop() { in pop() method in ArrayDeque
|
D | LinkedList.java | 800 public E pop() { in pop() method in LinkedList
|
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectOutputStream.java | 1421 debugInfoStack.pop(); in writeArray() 1427 debugInfoStack.pop(); in writeArray() 1476 debugInfoStack.pop(); in writeOrdinaryObject() 1506 debugInfoStack.pop(); in writeExternalData() 1543 debugInfoStack.pop(); in writeSerialData() 1588 debugInfoStack.pop(); in defaultWriteFields() 1747 debugInfoStack.pop(); in writeFields() 2520 void pop() { in pop() method in ObjectOutputStream.DebugTraceInfoStack
|
/libcore/luni/src/main/native/ |
D | org_apache_harmony_xml_ExpatParser.cpp | 89 jstring pop() { in pop() function in StringStack 660 jstring localName = parsingContext->stringStack.pop(); in endElement() 661 jstring uri = parsingContext->stringStack.pop(); in endElement() 662 jstring qName = parsingContext->stringStack.pop(); in endElement() 737 jstring internedPrefix = parsingContext->stringStack.pop(); in endNamespace()
|
/libcore/ojluni/src/main/java/sun/net/www/http/ |
D | KeepAliveCache.java | 260 KeepAliveEntry e = pop(); in get()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | LinkedListTest.java | 523 assertEquals(i, q.pop()); in testPop() 526 q.pop(); in testPop()
|
D | ConcurrentLinkedDequeTest.java | 158 assertEquals(i, q.pop()); in testPop() 161 q.pop(); in testPop()
|
D | ArrayDequeTest.java | 154 assertEquals(i, q.pop()); in testPop() 157 q.pop(); in testPop()
|
D | LinkedBlockingDequeTest.java | 471 assertEquals(i, q.pop()); in testPop() 474 q.pop(); in testPop()
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ForkJoinPool.java | 887 final ForkJoinTask<?> pop() { in pop() method in ForkJoinPool.WorkQueue 957 return (config < 0) ? poll() : pop(); in nextLocalTask() 2111 if ((t = w.pop()) == null) in helpStealer() 2269 if (wc >= 0 && (t = w.pop()) != null) { // run locals if LIFO in helpQuiescePool()
|
D | LinkedBlockingDeque.java | 747 public E pop() { in pop() method in LinkedBlockingDeque
|
D | ConcurrentLinkedDeque.java | 977 public E pop() { return removeFirst(); } in pop() method in ConcurrentLinkedDeque
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | URLClassPath.java | 320 url = urls.pop();
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | SerializationStressTest4.java | 1318 equals = ((java.util.Stack) objToSave).pop().equals( in test_writeObject_Stack() 1319 ((java.util.Stack) objLoaded).pop()); in test_writeObject_Stack()
|
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
D | SpliteratorTestHelper.java | 535 e = stack.pop(); in testSplitUntilNull()
|
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
D | SpliteratorTestHelper.java | 535 e = stack.pop(); in testSplitUntilNull()
|