/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/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()
|
/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 | 513 E pop(); in pop() method
|
D | ArrayDeque.java | 504 public E pop() { in pop() method in ArrayDeque
|
D | LinkedList.java | 800 public E pop() { in pop() method in LinkedList
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | Deque.annotated.java | 85 @libcore.util.NullFromTypeParam public E pop(); in pop() method
|
D | ArrayDeque.annotated.java | 90 @libcore.util.NullFromTypeParam public E pop() { throw new RuntimeException("Stub!"); } in pop() method in ArrayDeque
|
D | LinkedList.annotated.java | 99 @libcore.util.NullFromTypeParam public E pop() { throw new RuntimeException("Stub!"); } in pop() method in LinkedList
|
/libcore/ojluni/src/main/java/java/io/ |
D | ObjectOutputStream.java | 1437 debugInfoStack.pop(); in writeArray() 1443 debugInfoStack.pop(); in writeArray() 1492 debugInfoStack.pop(); in writeOrdinaryObject() 1522 debugInfoStack.pop(); in writeExternalData() 1559 debugInfoStack.pop(); in writeSerialData() 1608 debugInfoStack.pop(); in defaultWriteFields() 1767 debugInfoStack.pop(); in writeFields() 2549 void pop() { in pop() method in ObjectOutputStream.DebugTraceInfoStack
|
/libcore/luni/src/main/native/ |
D | org_apache_harmony_xml_ExpatParser.cpp | 92 jstring pop() { in pop() function in StringStack 674 jstring localName = parsingContext->stringStack.pop(); in endElement() 675 jstring uri = parsingContext->stringStack.pop(); in endElement() 676 jstring qName = parsingContext->stringStack.pop(); in endElement() 751 jstring internedPrefix = parsingContext->stringStack.pop(); in endNamespace()
|
/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | ArrayDeque.java | 147 public E pop() { in pop() method in ArrayDeque
|
D | LinkedList.java | 217 public E pop() { in pop() method in LinkedList
|
/libcore/ojluni/annotations/hiddenapi/java/nio/file/ |
D | FileTreeWalker.java | 57 void pop() { in pop() method in FileTreeWalker
|
/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()
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | LinkedBlockingDeque.java | 226 public E pop() { in pop() method in LinkedBlockingDeque
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ForkJoinPool.java | 919 final ForkJoinTask<?> pop() { in pop() method in ForkJoinPool.WorkQueue 989 return (config < 0) ? poll() : pop(); in nextLocalTask() 2143 if ((t = w.pop()) == null) in helpStealer() 2301 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
|
/libcore/ojluni/annotations/hiddenapi/java/io/ |
D | ObjectOutputStream.java | 532 void pop() { in pop() method in ObjectOutputStream.DebugTraceInfoStack
|