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.java34 private final TreeMap<CstBaseMethodRef, MethodIdItem> methodIds; field in class:MethodIdsSection
44 methodIds = new TreeMap<CstBaseMethodRef, MethodIdItem>();
50 return methodIds.values();
62 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
79 int sz = methodIds.size();
104 MethodIdItem result = methodIds.get(method);
108 methodIds.put(method, result);
128 MethodIdItem item = methodIds.get(ref);
H A DDexFile.java85 private final MethodIdsSection methodIds; field in class:DexFile
136 methodIds = new MethodIdsSection(this);
155 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs,
163 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs,
449 return methodIds;
534 methodIds.intern((CstBaseMethodRef) cst);
563 return methodIds.get(cst);
631 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));
94 if (methodIds.contains(methodId)) {
95 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
105 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
116 if (fieldIds == null || methodIds == null) {
139 if (methodIds.contains(methodIndex)) {
140 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.java68 private final MethodIdTable methodIds = new MethodIdTable(); field in class:Dex
236 public List<MethodId> methodIds() { method in class:Dex
237 return methodIds;
779 checkBounds(index, tableOfContents.methodIds.size);
780 return open(tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * index))
785 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 202 milliseconds