Home
last modified time | relevance | path

Searched refs:indexMap (Results 1 – 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java273 private int readIntoMap(Dex.Section in, TableOfContents.Section section, IndexMap indexMap, in readIntoMap() argument
277 T v = read(in, indexMap, index); in readIntoMap()
304 updateIndex(e1.offset, e1.indexMap, e1.index, outCount - 1); in mergeUnsorted()
308 updateIndex(e2.offset, e2.indexMap, e2.index, outCount - 1); in mergeUnsorted()
318 private List<UnsortedValue> readUnsortedValues(Dex source, IndexMap indexMap) { in readUnsortedValues() argument
328 T value = read(in, indexMap, 0); in readUnsortedValues()
329 result.add(new UnsortedValue(source, indexMap, value, i, offset)); in readUnsortedValues()
335 abstract T read(Dex.Section in, IndexMap indexMap, int index); in read() argument
336 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex); in updateIndex() argument
341 final IndexMap indexMap; field in DexMerger.IdMerger.UnsortedValue
[all …]
DInstructionTransformer.java31 private IndexMap indexMap; field in InstructionTransformer
42 public short[] transform(IndexMap indexMap, short[] encodedInstructions) throws DexException { in transform() argument
47 this.indexMap = indexMap; in transform()
59 this.indexMap = null; in transform()
72 int mappedId = indexMap.adjustString(stringId); in visit()
82 int mappedId = indexMap.adjustField(fieldId); in visit()
92 int mappedId = indexMap.adjustType(typeId); in visit()
102 int mappedId = indexMap.adjustMethod(methodId); in visit()
DSortableType.java47 private final IndexMap indexMap; field in SortableType
51 public SortableType(Dex dex, IndexMap indexMap, ClassDef classDef) { in SortableType() argument
53 this.indexMap = indexMap; in SortableType()
62 return indexMap; in getIndexMap()