Searched refs:top (Results 1 - 25 of 42) sorted by relevance

12

/dalvik/libcore/
H A Drun-core-tests-on-ri19 top=$ANDROID_BUILD_TOP
21 java -cp $top/cts/tools/utils/lib/junit.jar:$top/out/host/common/core-tests.jar \
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DNamespaceMappings.java88 * depth can be popped of the top and the same node
375 private int top = -1; field in class:NamespaceMappings.Stack
382 clone.top = this.top;
384 for (int i=0; i <= top; i++) {
397 top++;
398 if (max <= top) {
405 m_stack[top] = o;
411 if (0 <= top) {
412 o = m_stack[top];
[all...]
H A DTreeWalker.java141 Node top = pos;
153 if (top.equals(pos))
162 if ((null == pos) || (top.equals(pos)))
188 * @param top Node in the tree where to end traversal
192 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException argument
207 if ((null != top) && top.equals(pos))
216 if ((null == pos) || ((null != top) && top.equals(pos)))
/dalvik/vm/alloc/
H A DMarkSweep.h29 /* Current top of the stack (inclusive)
31 const Object **top; member in struct:__anon58
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2RTFDTM.java173 * (I'm counting on the fact that getOwnerDocument() is implemented on top
326 boolean top=mark_size.empty();
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/libcore/archive/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/dalvik/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/luni-kernel/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/openssl/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Makefile.
H A DBNInterface.c140 a->top = 2;
220 ret->top = len;
222 // need to call this due to clear byte at top if avoiding
223 // having the top bit set (-ve number)
224 // Basically get rid of top zero ints:
235 ret->top = 0;
257 ret->top = intLen;
336 int intLen = a->top;
427 int len = a->top;
472 int intLen = a->top;
[all...]
/dalvik/libcore/sql/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/x-net/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DXUnresolvedVariable.java145 * @param top A valid value that specifies where in the variable
148 public void setVarStackPos(int top) argument
150 m_varStackPos = top;
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java110 int top = pos; // Remember the root of this subtree
120 if (top == pos)
129 if ((DTM.NULL == pos) || (top == pos))
131 // %REVIEW% This condition isn't tested in traverse(pos,top)
153 * @param top Node in the tree where to end traversal.
154 * If top==DTM.NULL, run through end of document.
158 public void traverse(int pos, int top) throws org.xml.sax.SAXException argument
161 // if(top==DTM.NULL) top=0
173 if ((DTM.NULL != top)
[all...]
/dalvik/libcore/xml/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/icu/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/luni/src/main/native/
H A Dsub.mk1 # This file is included by the top-level libcore Android.mk.
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java173 Node top = pos;
185 if (top.equals(pos))
194 if ((null == pos) || (top.equals(pos)))
219 * @param top Node in the tree where to end traversal
223 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException argument
238 if ((null != top) && top.equals(pos))
247 if ((null == pos) || ((null != top) && top.equals(pos)))
/dalvik/vm/compiler/template/armv5te/
H A DTEMPLATE_INVOKE_METHOD_NATIVE.S37 @ newFp->localRefCookie=top
50 ldr r0, [r10, #offStackSaveArea_localRefCookie] @ r0<- saved->top
54 str r0, [r9, #offThread_jniLocal_topCookie] @ new top <- old top
H A Dfooter.S18 @ newFp->localRefCookie=top
34 ldr r0, [r10, #offStackSaveArea_localRefCookie] @ r0<- saved->top
39 str r0, [r9, #offThread_jniLocal_topCookie] @ new top <- old top
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatPullParser.java462 NamespaceStack top = EMPTY; field in class:ExpatPullParser.NamespaceStack.Builder
471 top = new NamespaceStack(top, prefix, uri, depth);
479 while (top != null && top.depth == depth) {
480 top = top.parent;
486 return top;
/dalvik/vm/alloc/TEST/HeapBitmapTest/
H A Dmain.c354 uintptr_t top; local
368 top = base + step * NUM_XOR_PTRS;
369 if (top > (uintptr_t)(HEAP_BASE + HEAP_SIZE)) {
370 top = (uintptr_t)(HEAP_BASE + HEAP_SIZE);
382 for (addr = base; addr < top; addr += step) {
/dalvik/vm/interp/
H A DInterp.c665 Object** top; local
676 top = self->internalLocalRefTable.table + debugTrackedRefStart;
677 while (top < self->internalLocalRefTable.nextEntry) {
679 *top,
680 ((*top)->clazz != NULL) ? (*top)->clazz->descriptor : "");
681 top++;
/dalvik/dx/src/com/android/dx/util/
H A DIntList.java286 public int top() { method in class:IntList
/dalvik/vm/mterp/x86/
H A Dfooter.S204 movl %eax, offStackSaveArea_localRefCookie(%edx) # newSaveArea->localRefCookie<- top
220 movl offStackSaveArea_localRefCookie(%ecx), %edx # %edx<- old top
223 movl %edx, offThread_jniLocal_topCookie(%eax) # new top <- old top
310 * common_periodicChecks is on the top of stack. We need to preserve

Completed in 553 milliseconds

12