Searched refs:pop (Results 1 - 25 of 59) sorted by relevance

123

/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DStackTest.java61 s.pop();
89 s.pop();
90 assertTrue("Peek did not return top item after a pop", s.pop() == item2);
94 s.pop();
95 s.pop();
97 s.pop();
105 * @tests java.util.Stack#pop()
110 method = "pop",
114 // Test for method java.lang.Object java.util.Stack.pop()
[all...]
H A DEmptyStackExceptionTest.java47 s.pop();
/dalvik/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...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2RTFDTM.java320 * @return true if and only if the pop completely emptied the
328 m_size=top ? m_emptyNodeCount : mark_size.pop();
337 int ds= top ? m_emptyNSDeclSetCount : mark_nsdeclset_size.pop();
342 int ds1= top ? m_emptyNSDeclSetElemsCount : mark_nsdeclelem_size.pop();
348 m_data.setSize(top ? m_emptyDataCount : mark_data_size.pop());
349 m_chars.setLength(top ? m_emptyCharsCount : mark_char_size.pop());
350 m_dataOrQName.setSize(top ? m_emptyDataQNCount : mark_doq_size.pop());
/dalvik/vm/arch/x86/
H A DCall386ABI.S168 pop %ebx
169 pop %esi
170 pop %edi
171 pop %ebp
/dalvik/dx/tests/107-verify-stack-ops/
H A Drun41 oneop pop
/dalvik/vm/compiler/template/armv5te/
H A DTEMPLATE_MEM_OP_DECODE.S15 pop {r0-r12,lr} @ restore all registers
H A DTEMPLATE_SAVE_STATE.S20 pop {r0, r7} @ recover r0, r7
/dalvik/vm/compiler/template/armv5te-vfp/
H A DTEMPLATE_MEM_OP_DECODE.S16 pop {r0-r12,lr} @ restore all registers
H A DTEMPLATE_SAVE_STATE.S22 pop {r0, r7} @ recover r0, r7
/dalvik/vm/mterp/x86-atom/
H A DOP_FLOAT_TO_INT.S55 fstps (rFP, %edx, 4) # pop floating point stack
60 fstps (rFP, %edx, 4) # pop floating point stack
65 fstps (rFP, %edx, 4) # pop floating point stack
66 fstps (rFP, %edx, 4) # pop floating point stack
/dalvik/libcore/luni/src/main/java/java/util/
H A DStack.java22 * stack of objects. It enables users to pop to and push from the stack,
51 * @see #pop
72 public synchronized E pop() { method in class:Stack
90 * @see #pop
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DBoolStack.java104 public final boolean pop() method in class:BoolStack
H A DIntStack.java99 public final int pop() method in class:IntStack
H A DObjectStack.java99 public Object pop() method in class:ObjectStack
H A DStringVector.java199 public final String pop() method in class:StringVector
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DConsoleHandlerTest.java226 assertNull(CallVerificationStack.getInstance().pop());
275 assertNull(CallVerificationStack.getInstance().pop());
371 assertNull(CallVerificationStack.getInstance().pop());
372 assertSame(r, CallVerificationStack.getInstance().pop());
397 assertNull(CallVerificationStack.getInstance().pop());
398 assertSame(r, CallVerificationStack.getInstance().pop());
403 assertNull(CallVerificationStack.getInstance().pop());
409 assertNull(CallVerificationStack.getInstance().pop());
410 assertSame(r, CallVerificationStack.getInstance().pop());
416 assertNull(CallVerificationStack.getInstance().pop());
[all...]
H A DLoggerTest.java2025 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2063 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2088 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2123 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2149 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2185 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2214 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2252 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2279 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
2321 LogRecord r = (LogRecord) CallVerificationStack.getInstance().pop();
[all...]
H A DHandlerTest.java637 assertSame(r,CallVerificationStack.getInstance().pop());
641 assertSame(r1, CallVerificationStack.getInstance().pop());
647 CallVerificationStack.getInstance().pop();
693 assertSame(ex, CallVerificationStack.getInstance().pop());
694 assertEquals("test msg", CallVerificationStack.getInstance().pop());
698 assertSame(null, CallVerificationStack.getInstance().pop());
699 assertNull(CallVerificationStack.getInstance().pop());
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DElemContext.java47 * information about the parent element with a simple pop() when the
104 * is held by the serializer is changed via a quick pop() or push().
123 // this assignment means can never pop this context off
149 final ElemContext pop() method in class:ElemContext
151 /* a very simple pop. No clean up is done of the deeper
H A DNamespaceMappings.java51 * When </sentance> occurs the popNamespaces(3) will pop "p3"/"jkl" off the
52 * stack. Of course popNamespaces(2) would pop anything with depth 2 or
213 stack.pop();
279 MappingRecord nm1 = (MappingRecord) m_nodeStack.pop();
280 // pop the node from the stack
287 // It would be nice to always pop() but we
300 prefixStack.pop();
354 * and popping of namespaces to one push or one pop on
409 public Object pop() { method in class:NamespaceMappings.Stack
/dalvik/dx/src/com/android/dx/util/
H A DIntList.java296 public int pop() { method in class:IntList
313 public void pop(int n) { method in class:IntList
/dalvik/vm/mterp/armv5te/
H A DOP_EXECUTE_INLINE_RANGE.S22 add sp, sp, #8 @ pop stack
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DXPathContext.java82 * required since we're never going to pop these.
434 m_saxLocations.pop();
709 m_contextNodeLists.pop();
781 m_prefixResolvers.pop();
879 m_predicatePos.pop();
961 m_prefixResolvers.pop();
993 m_axesIteratorStack.pop();
1281 * If there is no RTF DTM, there's nothing to pop so this
1288 * Basically: If pop says this DTM is now empty, then return to the previous
1294 int previous=m_last_pushed_rtfdtm.pop();
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java402 * after the stylesheet has been parsed. We pop in
1230 * Also pop the stylesheet locator stack.
1241 m_stylesheetLocatorStack.pop();
1244 m_lastPoppedStylesheet = (Stylesheet) m_stylesheets.pop();
1281 return (XSLTElementProcessor) m_processors.pop();
1362 return (ElemTemplateElement) m_elems.pop();
1406 return (String) m_baseIdentifiers.pop();
1516 return (String) m_importStack.pop();
1535 return (Source) m_importSourceStack.pop();
1561 m_nsSupportStack.pop();
[all...]

Completed in 837 milliseconds

123