HomeSort by relevance Sort by last modified time
    Searched refs:methodIndex (Results 1 - 25 of 34) sorted by null

1 2

  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_VIRTUAL_QUICK.S 37 movl (%edx, %ecx, 4), %ecx # %ecx<- vtable[methodIndex]
OP_INVOKE_SUPER.S 75 movzwl offMethod_methodIndex(%ecx), %ecx # %ecx<- baseMethod->methodIndex
76 cmp offClassObject_vtableCount(%edx), %ecx # compare vtableCount with methodIndex
80 movl (%edx, %ecx, 4), %ecx # %ecx<- vtable[methodIndex]
OP_INVOKE_SUPER_QUICK.S 38 movl (%eax, %ecx, 4), %ecx # %ecx<- vtable[methodIndex]
OP_INVOKE_VIRTUAL.S 87 movzwl offMethod_methodIndex(%eax), %eax # %eax<- baseMethod->methodIndex
92 movl (%edx, %eax, 4), %ecx # %ecx<- vtable[methodIndex]
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_VIRTUAL.S 39 ldrh r2, [r0, #offMethod_methodIndex] @ r2<- baseMethod->methodIndex
44 ldr r0, [r3, r2, lsl #2] @ r3<- vtable[methodIndex]
OP_INVOKE_SUPER.S 37 ldrh r2, [r0, #offMethod_methodIndex] @ r2<- baseMethod->methodIndex
40 cmp r2, r3 @ compare (methodIndex, vtableCount)
43 ldr r0, [r1, r2, lsl #2] @ r3<- vtable[methodIndex]
  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 224 int methodIndex = findMethodIndex(method);
227 System.arraycopy(methods, methodIndex+1,
228 methods, methodIndex,
229 methodsCount - methodIndex - 1);
  /external/webkit/WebCore/bridge/jni/v8/
JavaInstanceV8.cpp 85 for (size_t methodIndex = 0; methodIndex < numMethods; methodIndex++) {
86 aMethod = methodList[methodIndex];
  /dalvik/vm/mterp/x86/
OP_INVOKE_SUPER.S 38 movzwl offMethod_methodIndex(%ecx),%ecx # ecx<- baseMthod->methodIndex
39 cmpl offClassObject_vtableCount(%eax),%ecx # compare(methodIndex,vtableCount)
42 movl (%eax,%ecx,4),%eax # eax<- vtable[methodIndex]
OP_INVOKE_VIRTUAL.S 49 movzwl offMethod_methodIndex(%eax),%eax # eax<- baseMethod->methodIndex
54 movl (%ecx,%eax,4),%eax # eax<- vtable[methodIndex]
  /dalvik/vm/oo/
Object.c 628 int methodIndex;
655 methodIndex = clazz->iftable[i].methodIndexArray[meth->methodIndex];
657 methodIndex = meth->methodIndex;
660 assert(methodIndex >= 0 && methodIndex < clazz->vtableCount);
661 actualMeth = clazz->vtable[methodIndex];
Object.h 541 u2 methodIndex;
Resolve.c 320 * However, the Method->methodIndex will be an offset into clazz->vtable,
323 * and use methodIndex accordingly. I'm not doing this yet because
357 resMethod->clazz->descriptor, (u4) resMethod->methodIndex);
Class.c     [all...]
  /external/webkit/WebCore/bridge/jni/jsc/
JavaInstanceJSC.cpp 136 for (size_t methodIndex = 0; methodIndex < numMethods; methodIndex++) {
137 aMethod = methodList[methodIndex];
  /dalvik/vm/mterp/c/
gotoTargets.c 154 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
155 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
183 (u4) baseMethod->methodIndex,
191 (u4) baseMethod->methodIndex,
252 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
261 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
    [all...]
  /dalvik/vm/reflect/
Proxy.c 77 gDvm.voffJavaLangObject_equals = methE->methodIndex;
78 gDvm.voffJavaLangObject_hashCode = methH->methodIndex;
79 gDvm.voffJavaLangObject_toString = methT->methodIndex;
80 gDvm.voffJavaLangObject_finalize = methF->methodIndex;
    [all...]
  /dalvik/vm/mterp/out/
InterpC-x86-atom.c     [all...]
InterpC-x86.c     [all...]
InterpC-allstubs.c     [all...]
  /dalvik/vm/mterp/common/
asm-constants.h 177 MTERP_OFFSET(offMethod_methodIndex, Method, methodIndex, 8)
  /dalvik/vm/analysis/
Optimize.c 873 * Note: Method->methodIndex is a u2 and is range checked during the
877 updateCode(method, insns+1, baseMethod->methodIndex);
    [all...]
  /dalvik/vm/compiler/
Frontend.c 82 pResMethods[insn->dalvikInsn.vB]->methodIndex;
    [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.c     [all...]
  /dalvik/vm/interp/
Interp.c 978 /* make sure absMethod->methodIndex means what we think it means */
983 * absMethod's class, then use absMethod->methodIndex to find
1002 assert(absMethod->methodIndex <
1006 thisClass->iftable[i].methodIndexArray[absMethod->methodIndex];
    [all...]

Completed in 3302 milliseconds

1 2