Searched defs:pop (Results 1 - 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DStack.java32 * <tt>push</tt> and <tt>pop</tt> operations are provided, as well as a
80 public synchronized E pop() { method in class:Stack
H A DDeque.java154 * <td>{@link #pop pop()}</td>
512 E pop(); method in interface:Deque
H A DArrayDeque.java103 * element that would be removed by remove() or pop()); or an
497 public E pop() { method in class:ArrayDeque
582 * {@link #remove} or popped (via successive calls to {@link #pop}).
H A DLinkedList.java800 public E pop() { method in class:LinkedList
/libcore/benchmarks/src/benchmarks/regression/
H A DIntegerBenchmark.java51 t += pop((long) i);
56 private static int pop(long l) { method in class:IntegerBenchmark
/libcore/support/src/test/java/tests/util/
H A DCallVerificationStack.java200 public Object pop() { method in class:CallVerificationStack
201 this.callStack.pop();
202 return super.pop();
211 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
222 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
233 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
244 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
255 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
266 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
277 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop();
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentLinkedDeque.java977 public E pop() { return removeFirst(); } method in class:ConcurrentLinkedDeque
H A DLinkedBlockingDeque.java747 public E pop() { method in class:LinkedBlockingDeque
H A DForkJoinPool.java164 * pop, and poll (aka steal), under the further constraints that
165 * push and pop are called only from the owning thread (or, as
180 * arbitrating pop vs poll (steal) from being on the indices
190 * to start scanning -- see below.) Both a successful pop and
193 * The pop operation (always performed by owner) is:
226 * when a push, pop, or poll have not fully committed, or making
245 * using poll rather than pop. This can be useful in
887 final ForkJoinTask<?> pop() { method in class:ForkJoinPool.WorkQueue
957 return (config < 0) ? poll() : pop();
1176 if (s + 1 == top) { // pop
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DObjectOutputStream.java1421 debugInfoStack.pop();
1427 debugInfoStack.pop();
1476 debugInfoStack.pop();
1506 debugInfoStack.pop();
1543 debugInfoStack.pop();
1588 debugInfoStack.pop();
1747 debugInfoStack.pop();
2520 void pop() { method in class:ObjectOutputStream.DebugTraceInfoStack
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp89 jstring pop() { function in class:StringStack
660 jstring localName = parsingContext->stringStack.pop();
661 jstring uri = parsingContext->stringStack.pop();
662 jstring qName = parsingContext->stringStack.pop();
737 jstring internedPrefix = parsingContext->stringStack.pop();

Completed in 442 milliseconds