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.java84 private final MethodIdsSection methodIds; field in class:DexFile
135 methodIds = new MethodIdsSection(this);
154 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs,
162 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs,
422 return methodIds;
507 methodIds.intern((CstBaseMethodRef) cst);
536 return methodIds.get(cst);
580 methodIds.prepare();
/dalvik/dx/src/com/android/dx/command/findusages/
H A DFindUsages.java36 private final Set<Integer> methodIds; field in class:FindUsages
63 methodIds = fieldIds = null;
67 methodIds = new HashSet<Integer>();
74 methodIds.addAll(getMethodIds(dex, memberNameIndexes, typeIndex));
92 if (methodIds.contains(methodId)) {
93 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
103 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
114 if (fieldIds == null || methodIds == null) {
137 if (methodIds.contains(methodIndex)) {
138 out.println(location() + " method declared " + dex.methodIds()
[all...]
/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java37 public final Section methodIds = new Section(0x0005); field in class:TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, callSiteIds,
115 methodIds.size = headerIn.readInt();
116 methodIds.off = headerIn.readInt();
192 out.writeInt(methodIds.size);
193 out.writeInt(methodIds.off);
H A DDex.java69 private final MethodIdTable methodIds = new MethodIdTable(); field in class:Dex
237 public List<MethodId> methodIds() { method in class:Dex
238 return methodIds;
769 checkBounds(index, tableOfContents.methodIds.size);
770 return open(tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * index))
774 return tableOfContents.methodIds.size;
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java67 public final short[] methodIds; field in class:IndexMap
83 this.methodIds = new short[tableOfContents.methodIds.size];
173 return methodIds[methodIndex] & 0xffff;

Completed in 497 milliseconds