Searched defs:methodIds (Results 1 - 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DMethodIdsSection.java35 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds; field in class:MethodIdsSection
45 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>();
51 return methodIds.values();
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
80 int sz = methodIds.size();
105 MethodIdItem result = methodIds.get(method);
109 methodIds.put(method, result);
129 MethodIdItem item = methodIds.get(ref);
H A DDexFile.java77 private final MethodIdsSection methodIds; field in class:DexFile
118 methodIds = new MethodIdsSection(this);
127 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
373 return methodIds;
430 methodIds.intern((CstBaseMethodRef) cst);
459 return methodIds.get(cst);
487 methodIds.prepare();
/dalvik/dx/src/com/android/dx/dex/file/
H A DMethodIdsSection.java35 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds; field in class:MethodIdsSection
45 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>();
51 return methodIds.values();
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
80 int sz = methodIds.size();
105 MethodIdItem result = methodIds.get(method);
109 methodIds.put(method, result);
129 MethodIdItem item = methodIds.get(ref);
H A DDexFile.java82 private final MethodIdsSection methodIds; field in class:DexFile
125 methodIds = new MethodIdsSection(this);
134 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
394 return methodIds;
449 methodIds.intern((CstBaseMethodRef) cst);
478 return methodIds.get(cst);
506 methodIds.prepare();
/dalvik/dx/src/com/android/dx/command/findusages/
H A DFindUsages.java37 private final Set<Integer> methodIds; field in class:FindUsages
64 methodIds = fieldIds = null;
68 methodIds = new HashSet<Integer>();
75 methodIds.addAll(getMethodIds(dex, memberNameIndexes, typeIndex));
93 if (methodIds.contains(methodId)) {
94 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
104 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
115 if (fieldIds == null || methodIds == null) {
138 if (methodIds.contains(methodIndex)) {
139 out.println(location() + " method declared " + dex.methodIds()
[all...]
/dalvik/dx/src/com/android/dx/dex/
H A DTableOfContents.java39 public final Section methodIds = new Section(0x0005); field in class:TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
109 methodIds.size = headerIn.readInt();
110 methodIds.off = headerIn.readInt();
186 out.writeInt(methodIds.size);
187 out.writeInt(methodIds.off);
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java46 public final short[] methodIds; field in class:IndexMap
59 this.methodIds = new short[tableOfContents.methodIds.size];
139 return methodIds[methodIndex] & 0xffff;
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java110 private final List<MethodId> methodIds = new AbstractList<MethodId>() { field in class:DexBuffer
112 checkBounds(index, tableOfContents.methodIds.size);
113 return open(tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * index))
117 return tableOfContents.methodIds.size;
250 public List<MethodId> methodIds() { method in class:DexBuffer
251 return methodIds;

Completed in 2412 milliseconds