/libcore/dex/src/main/java/com/android/dex/ |
ClassData.java | 82 private final int methodIndex; 86 public Method(int methodIndex, int accessFlags, int codeOffset) { 87 this.methodIndex = methodIndex; 93 return methodIndex;
|
Dex.java | 386 * {@code methodIds().get(methodIndex).getDeclaringClassIndex();} 388 public int declaringClassIndexFromMethodIndex(int methodIndex) { 389 checkBounds(methodIndex, tableOfContents.methodIds.size); 390 int position = tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * methodIndex); 396 * {@code methodIds().get(methodIndex).getNameIndex();} 398 public int nameIndexFromMethodIndex(int methodIndex) { 399 checkBounds(methodIndex, tableOfContents.methodIds.size); 400 int position = tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * methodIndex); 410 public short[] parameterTypeIndicesFromMethodIndex(int methodIndex) { 411 checkBounds(methodIndex, tableOfContents.methodIds.size) [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
MethodIdItem.java | 70 public static String asString(@Nonnull DexBackedDexFile dexFile, int methodIndex) { 71 int methodOffset = dexFile.getMethodIdItemOffset(methodIndex); 85 public static String getReferenceAnnotation(@Nonnull DexBackedDexFile dexFile, int methodIndex) { 87 String methodString = asString(dexFile, methodIndex); 88 return String.format("method_id_item[%d]: %s", methodIndex, methodString); 92 return String.format("method_id_item[%d]", methodIndex);
|
AnnotationDirectoryItem.java | 93 int methodIndex = dexFile.readSmallUint(out.getCursor()); 94 out.annotate(4, "%s", MethodIdItem.getReferenceAnnotation(dexFile, methodIndex)); 108 int methodIndex = dexFile.readSmallUint(out.getCursor()); 109 out.annotate(4, "%s", MethodIdItem.getReferenceAnnotation(dexFile, methodIndex));
|
ClassDataItem.java | 149 int methodIndex = previousIndex + indexDelta; 151 MethodIdItem.getReferenceAnnotation(dexFile, methodIndex)); 162 addCodeItemIdentity(codeOffset, MethodIdItem.asString(dexFile, methodIndex)); 165 return methodIndex;
|
EncodedValue.java | 101 int methodIndex = reader.readSizedSmallUint(valueArg+1); 102 out.annotate(valueArg+1, "value = %s", MethodIdItem.getReferenceAnnotation(reader.dexBuf, methodIndex));
|
/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;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
CustomInlineMethodResolver.java | 92 int methodIndex = instruction.getInlineIndex(); 94 if (methodIndex < 0 || methodIndex >= inlineMethods.length) { 95 throw new RuntimeException("Invalid method index: " + methodIndex); 97 return inlineMethods[methodIndex];
|
MethodAnalyzer.java | [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
DexBackedMethod.java | 64 public final int methodIndex; 79 this.methodIndex = methodIndexDiff + previousMethodIndex; 98 this.methodIndex = methodIndexDiff + previousMethodIndex; 102 this.methodAnnotationSetOffset = methodAnnotationIterator.seekTo(methodIndex); 103 this.parameterAnnotationSetListOffset = paramaterAnnotationIterator.seekTo(methodIndex); 106 public int getMethodIndex() { return methodIndex; } 194 methodIdItemOffset = dexFile.getMethodIdItemOffset(methodIndex);
|
DexBackedDexFile.java | 185 public int getMethodIdItemOffset(int methodIndex) { 186 if (methodIndex < 0 || methodIndex >= methodCount) { 187 throw new InvalidItemIndex(methodIndex, "Method index out of bounds: %d", methodIndex); 189 return methodStartOffset + methodIndex*MethodIdItem.ITEM_SIZE;
|
DexBackedClassDef.java | 313 previousIndex = item.methodIndex; 369 previousIndex = item.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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/ |
DexBackedMethodReference.java | 50 public DexBackedMethodReference(@Nonnull DexBackedDexFile dexFile, int methodIndex) { 52 this.methodIdItemOffset = dexFile.getMethodIdItemOffset(methodIndex);
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
FindUsages.java | 136 int methodIndex = method.getMethodIndex(); 137 if (methodIds.contains(methodIndex)) { 138 out.println(location() + " method declared " + dex.methodIds().get(methodIndex)); 175 int methodIndex = 0; 179 methods.add(methodIndex); 181 methodIndex++;
|
/external/chromium_org/third_party/npapi/npspy/extern/java/ |
jriext.h | 279 jsize methodIndex, char* *methodName, char* *methodSig, 346 #define JRI_GetClassMethodInfo(env, clazz, methodIndex, methodName, methodSig, methodAccess, methodClass, methodNativeProc) \ 347 ((*(env))->GetClassMethodInfo(env, clazz, methodIndex, methodName, methodSig, methodAccess, methodClass, methodNativeProc)) 368 jref *methodClass, jsize *methodIndex, 499 #define JRI_GetFrameInfo(env, frameIndex, methodClass, methodIndex, pc, varsCount) \ 500 ((*(env))->GetFrameInfo(env, frameIndex, methodClass, methodIndex, pc, varsCount))
|
/libcore/libart/src/main/java/java/lang/reflect/ |
ArtMethod.java | 74 private int methodIndex;
|
/libcore/luni/src/main/java/libcore/reflect/ |
AnnotationAccess.java | 246 int methodIndex= element instanceof Method ? ((Method) element).getDexMethodIndex() 251 if (candidateMethodIndex == methodIndex) { 594 private static AccessibleObject indexToMethod(Class<?> context, Dex dex, int methodIndex) { 596 context.getDexCacheType(dex, dex.declaringClassIndexFromMethodIndex(methodIndex)); 597 String name = context.getDexCacheString(dex, dex.nameIndexFromMethodIndex(methodIndex)); 598 short[] types = dex.parameterTypeIndicesFromMethodIndex(methodIndex);
|
/dalvik/dx/src/com/android/dx/merge/ |
IndexMap.java | 164 public int adjustMethod(int methodIndex) { 165 return methodIds[methodIndex] & 0xffff;
|
/external/dexmaker/src/main/java/com/google/dexmaker/stock/ |
ProxyBuilder.java | 375 * int methodIndex = 4; 377 * Method thisMethod = allMethods[methodIndex]; 428 Local<Integer> methodIndex = code.newLocal(TypeId.INT); 438 code.loadConstant(methodIndex, m); 440 code.aget(thisMethod, methodArray, methodIndex); [all...] |
/prebuilts/sdk/tools/lib/ |
dx.jar | |
/external/robolectric/lib/main/ |
javassist-3.14.0-GA.jar | |
/external/owasp/sanitizer/tools/findbugs/lib/ |
bcel.jar | |
/prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/ |
bcel-2.0.1.jar | |