/dalvik/dx/src/com/android/dx/io/ |
ClassData.java | 82 private final int methodIndex; 86 public Method(int methodIndex, int accessFlags, int codeOffset) { 87 this.methodIndex = methodIndex; 93 return methodIndex;
|
DexBuffer.java | 503 int methodIndex = 0; 505 methodIndex += readUleb128(); // method index diff 508 result[i] = new ClassData.Method(methodIndex, accessFlags, codeOff);
|
/external/javassist/src/main/javassist/bytecode/ |
EnclosingMethodAttribute.java | 87 public int methodIndex() { 103 int mi = methodIndex(); 113 int mi = methodIndex(); 127 if (methodIndex() == 0)
|
/external/javassist/src/main/javassist/expr/ |
NewExpr.java | 105 int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor 106 return constPool.getMethodrefType(methodIndex); 178 int methodIndex = iterator.u16bitAt(pos + 1); // constructor 180 String signature = constPool.getMethodrefType(methodIndex); 193 methodIndex)); 221 int newIndex, methodIndex; 226 methodIndex = mi;
|
/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_VIRTUAL_JUMBO.S | 33 ldrh r2, [r0, #offMethod_methodIndex] @ r2<- baseMethod->methodIndex 38 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]
|
OP_INVOKE_SUPER_JUMBO.S | 32 ldrh r2, [r0, #offMethod_methodIndex] @ r2<- baseMethod->methodIndex 35 cmp r2, r3 @ compare (methodIndex, vtableCount) 38 ldr r0, [r1, r2, lsl #2] @ r3<- vtable[methodIndex]
|
/dalvik/vm/mterp/x86/ |
OP_INVOKE_VIRTUAL.S | 42 movzwl offMethod_methodIndex(%eax),%eax # eax<- baseMethod->methodIndex 47 movl (%ecx,%eax,4),%eax # eax<- vtable[methodIndex]
|
OP_INVOKE_VIRTUAL_JUMBO.S | 34 movzwl offMethod_methodIndex(%eax),%eax # eax<- baseMethod->methodIndex 39 movl (%ecx,%eax,4),%eax # eax<- vtable[methodIndex]
|
OP_INVOKE_SUPER.S | 35 movzwl offMethod_methodIndex(%ecx),%ecx # ecx<- baseMthod->methodIndex 36 cmpl offClassObject_vtableCount(%eax),%ecx # compare(methodIndex,vtableCount) 39 movl (%eax,%ecx,4),%eax # eax<- vtable[methodIndex]
|
OP_INVOKE_SUPER_JUMBO.S | 28 movzwl offMethod_methodIndex(%ecx),%ecx # ecx<- baseMthod->methodIndex 29 cmpl offClassObject_vtableCount(%eax),%ecx # compare(methodIndex,vtableCount) 32 movl (%eax,%ecx,4),%eax # eax<- 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/Source/WebCore/bridge/jni/v8/ |
JavaNPObjectV8.cpp | 133 for (size_t methodIndex = 0; methodIndex < numMethods; methodIndex++) { 134 aMethod = methodList[methodIndex];
|
/external/webkit/Source/WebKit2/Platform/qt/ |
RunLoopQt.cpp | 45 int methodIndex = metaObject()->indexOfMethod("performWork()"); 46 m_method = metaObject()->method(methodIndex);
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
FindUsages.java | 137 int methodIndex = method.getMethodIndex(); 138 if (methodIds.contains(methodIndex)) { 139 out.println(location() + " method declared " + dex.methodIds().get(methodIndex)); 176 int methodIndex = 0; 180 methods.add(methodIndex); 182 methodIndex++;
|
/dalvik/vm/oo/ |
Object.cpp | 676 int methodIndex; 704 methodIndex = clazz->iftable[i].methodIndexArray[meth->methodIndex]; 706 methodIndex = meth->methodIndex; 709 assert(methodIndex >= 0 && methodIndex < clazz->vtableCount); 710 actualMeth = clazz->vtable[methodIndex];
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
JavaInstanceJSC.cpp | 161 for (size_t methodIndex = 0; methodIndex < numMethods; methodIndex++) { 162 Method* aMethod = methodList[methodIndex];
|
/dalvik/dx/src/com/android/dx/merge/ |
IndexMap.java | 128 public int adjustMethod(int methodIndex) { 129 return methodIds[methodIndex] & 0xffff;
|
/dalvik/vm/mterp/c/ |
gotoTargets.cpp | 176 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount); 177 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex]; 205 (u4) baseMethod->methodIndex, 213 (u4) baseMethod->methodIndex, 285 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) { 293 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex]; [all...] |
/dalvik/vm/reflect/ |
Proxy.cpp | [all...] |