/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()
|
/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/ojluni/src/main/java/java/nio/file/ |
D | FileTreeWalker.java | 367 stack.pop(); in next() 387 void pop() { in pop() method in FileTreeWalker 389 DirectoryNode node = stack.pop(); in pop() 420 pop(); in close()
|
D | Files.java | 2684 walker.pop();
|
/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 | 498 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 | 1430 debugInfoStack.pop(); in writeArray() 1436 debugInfoStack.pop(); in writeArray() 1485 debugInfoStack.pop(); in writeOrdinaryObject() 1515 debugInfoStack.pop(); in writeExternalData() 1552 debugInfoStack.pop(); in writeSerialData() 1601 debugInfoStack.pop(); in defaultWriteFields() 1760 debugInfoStack.pop(); in writeFields() 2533 void pop() { in pop() method in ObjectOutputStream.DebugTraceInfoStack
|
/libcore/luni/src/main/native/ |
D | org_apache_harmony_xml_ExpatParser.cpp | 91 jstring pop() { in pop() function in StringStack 662 jstring localName = parsingContext->stringStack.pop(); in endElement() 663 jstring uri = parsingContext->stringStack.pop(); in endElement() 664 jstring qName = parsingContext->stringStack.pop(); in endElement() 739 jstring internedPrefix = parsingContext->stringStack.pop(); in endNamespace()
|
/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/ojluni/src/main/java/java/util/concurrent/ |
D | ForkJoinPool.java | 916 final ForkJoinTask<?> pop() { in pop() method in ForkJoinPool.WorkQueue 986 return (config < 0) ? poll() : pop(); in nextLocalTask() 2140 if ((t = w.pop()) == null) in helpStealer() 2298 if (wc >= 0 && (t = w.pop()) != null) { // run locals if LIFO in helpQuiescePool()
|
D | LinkedBlockingDeque.java | 776 public E pop() { in pop() method in LinkedBlockingDeque
|
D | ConcurrentLinkedDeque.java | 1006 public E pop() { return removeFirst(); } in pop() method in ConcurrentLinkedDeque
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | SerializationStressTest4.java | 1294 equals = ((java.util.Stack) objToSave).pop().equals( in test_writeObject_Stack() 1295 ((java.util.Stack) objLoaded).pop()); in test_writeObject_Stack()
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | URLClassPath.java | 320 url = urls.pop();
|
/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()
|