Searched refs:callSiteIds (Results 1 – 7 of 7) sorted by relevance
/dalvik/dx/src/com/android/dx/dex/file/ |
D | CallSiteIdsSection.java | 30 private final TreeMap<CstCallSiteRef, CallSiteIdItem> callSiteIds = new TreeMap<>(); field in CallSiteIdsSection 52 IndexedItem result = callSiteIds.get((CstCallSiteRef) cst); in get() 63 for (CallSiteIdItem callSiteId : callSiteIds.values()) { in orderItems() 71 return callSiteIds.values(); in items() 89 CallSiteIdItem result = callSiteIds.get(cstRef); in intern() 92 callSiteIds.put(cstRef, result); in intern()
|
D | CallSiteIdItem.java | 62 CallSiteIdsSection callSiteIds = file.getCallSiteIds(); in addContents() local 63 CallSiteItem callSiteItem = callSiteIds.getCallSiteItem(callSite); in addContents() 68 callSiteIds.addCallSiteItem(callSite, callSiteItem); in addContents()
|
D | DexFile.java | 94 private final CallSiteIdsSection callSiteIds; field in DexFile 151 callSiteIds = new CallSiteIdsSection(this); in DexFile() 156 callSiteIds, methodHandles, in DexFile() 159 callSiteIds = null; in DexFile() 475 return callSiteIds; in getCallSiteIds() 573 return callSiteIds.get(cst); in findItemOrNull() 624 callSiteIds.prepare(); in toDex0() 647 if ((one == callSiteIds || one == methodHandles) && one.items().isEmpty()) { in toDex0() 701 if ((one == callSiteIds || one == methodHandles) && one.items().isEmpty()) { in toDex0()
|
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 68 public final int[] callSiteIds; field in IndexMap 84 this.callSiteIds = new int[tableOfContents.callSiteIds.size]; in IndexMap() 201 return callSiteIds[callSiteIndex]; in adjustCallSite()
|
D | DexMerger.java | 485 return tableOfContents.callSiteIds; in mergeCallSiteIds() 495 indexMap.callSiteIds[oldIndex] = newIndex; in mergeCallSiteIds()
|
/dalvik/dx/src/com/android/dex/ |
D | TableOfContents.java | 39 public final Section callSiteIds = new Section(0x0007); field in TableOfContents 53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, callSiteIds,
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
D | CfTranslator.java | 148 CallSiteIdsSection callSiteIds = dexFile.getCallSiteIds(); in translate0() local 179 callSiteIds.intern(ref); in translate0()
|