Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java95 public void putTypeListOffset(int oldOffset, int newOffset) { in putTypeListOffset() argument
96 if (oldOffset <= 0 || newOffset <= 0) { in putTypeListOffset()
99 typeListOffsets.put(oldOffset, newOffset); in putTypeListOffset()
102 public void putAnnotationOffset(int oldOffset, int newOffset) { in putAnnotationOffset() argument
103 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationOffset()
106 annotationOffsets.put(oldOffset, newOffset); in putAnnotationOffset()
109 public void putAnnotationSetOffset(int oldOffset, int newOffset) { in putAnnotationSetOffset() argument
110 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationSetOffset()
113 annotationSetOffsets.put(oldOffset, newOffset); in putAnnotationSetOffset()
116 public void putAnnotationSetRefListOffset(int oldOffset, int newOffset) { in putAnnotationSetRefListOffset() argument
[all …]