/dalvik/dx/src/com/android/dx/dex/file/ |
D | MethodIdsSection.java | 35 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds; field in MethodIdsSection 45 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>(); in MethodIdsSection() 51 return methodIds.values(); in items() 63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst); in get() 80 int sz = methodIds.size(); in writeHeaderPart() 105 MethodIdItem result = methodIds.get(method); in intern() 109 methodIds.put(method, result); in intern() 129 MethodIdItem item = methodIds.get(ref); in indexOf()
|
D | DexFile.java | 80 private final MethodIdsSection methodIds; field in DexFile 123 methodIds = new MethodIdsSection(this); in DexFile() 132 header, stringIds, typeIds, protoIds, fieldIds, methodIds, in DexFile() 392 return methodIds; in getMethodIds() 447 methodIds.intern((CstBaseMethodRef) cst); in internIfAppropriate() 476 return methodIds.get(cst); in findItemOrNull() 504 methodIds.prepare(); in toDex0()
|
D | MethodAnnotationStruct.java | 77 MethodIdsSection methodIds = file.getMethodIds(); in addContents() local 80 methodIds.intern(method); in addContents()
|
D | ParameterAnnotationStruct.java | 102 MethodIdsSection methodIds = file.getMethodIds(); in addContents() local 105 methodIds.intern(method); in addContents()
|
D | EncodedMethod.java | 116 MethodIdsSection methodIds = file.getMethodIds(); in addContents() local 119 methodIds.intern(method); in addContents()
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | MethodIdsSection.java | 35 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds; field in MethodIdsSection 45 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>(); in MethodIdsSection() 51 return methodIds.values(); in items() 63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst); in get() 80 int sz = methodIds.size(); in writeHeaderPart() 105 MethodIdItem result = methodIds.get(method); in intern() 109 methodIds.put(method, result); in intern() 129 MethodIdItem item = methodIds.get(ref); in indexOf()
|
D | DexFile.java | 77 private final MethodIdsSection methodIds; field in DexFile 118 methodIds = new MethodIdsSection(this); in DexFile() 127 header, stringIds, typeIds, protoIds, fieldIds, methodIds, in DexFile() 373 return methodIds; in getMethodIds() 430 methodIds.intern((CstBaseMethodRef) cst); in internIfAppropriate() 459 return methodIds.get(cst); in findItemOrNull() 487 methodIds.prepare(); in toDex0()
|
D | MethodAnnotationStruct.java | 77 MethodIdsSection methodIds = file.getMethodIds(); in addContents() local 80 methodIds.intern(method); in addContents()
|
D | ParameterAnnotationStruct.java | 101 MethodIdsSection methodIds = file.getMethodIds(); in addContents() local 104 methodIds.intern(method); in addContents()
|
D | EncodedMethod.java | 117 MethodIdsSection methodIds = file.getMethodIds(); in addContents() local 120 methodIds.intern(method); in addContents()
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
D | FindUsages.java | 36 private final Set<Integer> methodIds; field in FindUsages 63 methodIds = fieldIds = null; in FindUsages() 67 methodIds = new HashSet<Integer>(); in FindUsages() 74 methodIds.addAll(getMethodIds(dex, memberNameIndexes, typeIndex)); in FindUsages() 92 if (methodIds.contains(methodId)) { in FindUsages() 93 out.println(location() + ": method reference " + dex.methodIds().get(methodId) in FindUsages() 103 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex()); in location() 114 if (fieldIds == null || methodIds == null) { in findUsages() 137 if (methodIds.contains(methodIndex)) { in findUsages() 138 … out.println(location() + " method declared " + dex.methodIds().get(methodIndex)); in findUsages() [all …]
|
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 63 public final short[] methodIds; field in IndexMap 77 this.methodIds = new short[tableOfContents.methodIds.size]; in IndexMap() 165 return methodIds[methodIndex] & 0xffff; in adjustMethod()
|
D | DexMerger.java | 493 return tableOfContents.methodIds; in mergeMethodIds() 505 indexMap.methodIds[oldIndex] = (short) newIndex; in mergeMethodIds() 1052 + contents.methodIds.size * SizeOf.MEMBER_ID_ITEM in plus()
|
/dalvik/dx/src/com/android/dx/command/grep/ |
D | Grep.java | 78 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex()); in location()
|
/dalvik/dx/src/com/android/dx/io/ |
D | DexIndexPrinter.java | 85 for (MethodId methodId : dex.methodIds()) { in printMethodIds()
|