Home
last modified time | relevance | path

Searched refs:pop (Results 1 – 25 of 26) sorted by relevance

12

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DStackTest.java43 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 …]
DEmptyStackExceptionTest.java35 s.pop(); in test_Constructor()
DLinkedListTest.java816 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()
DArrayDequeTest.java542 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/
DCallVerificationStack.java200 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/
DFileTreeWalker.java367 stack.pop(); in next()
387 void pop() { in pop() method in FileTreeWalker
389 DirectoryNode node = stack.pop(); in pop()
420 pop(); in close()
DFiles.java2684 walker.pop();
/libcore/benchmarks/src/benchmarks/regression/
DIntegerBenchmark.java51 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/
DStack.java80 public synchronized E pop() { in pop() method in Stack
DDeque.java512 E pop(); in pop() method
DArrayDeque.java498 public E pop() { in pop() method in ArrayDeque
DLinkedList.java800 public E pop() { in pop() method in LinkedList
/libcore/ojluni/src/main/java/java/io/
DObjectOutputStream.java1430 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/
Dorg_apache_harmony_xml_ExpatParser.cpp91 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/
DLinkedListTest.java523 assertEquals(i, q.pop()); in testPop()
526 q.pop(); in testPop()
DConcurrentLinkedDequeTest.java158 assertEquals(i, q.pop()); in testPop()
161 q.pop(); in testPop()
DArrayDequeTest.java154 assertEquals(i, q.pop()); in testPop()
157 q.pop(); in testPop()
DLinkedBlockingDequeTest.java471 assertEquals(i, q.pop()); in testPop()
474 q.pop(); in testPop()
/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinPool.java916 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()
DLinkedBlockingDeque.java776 public E pop() { in pop() method in LinkedBlockingDeque
DConcurrentLinkedDeque.java1006 public E pop() { return removeFirst(); } in pop() method in ConcurrentLinkedDeque
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DSerializationStressTest4.java1294 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/
DURLClassPath.java320 url = urls.pop();
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DSpliteratorTestHelper.java535 e = stack.pop(); in testSplitUntilNull()
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DSpliteratorTestHelper.java535 e = stack.pop(); in testSplitUntilNull()

12