Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java103 public void putTypeListOffset(int oldOffset, int newOffset) { in putTypeListOffset() argument
104 if (oldOffset <= 0 || newOffset <= 0) { in putTypeListOffset()
107 typeListOffsets.put(oldOffset, newOffset); in putTypeListOffset()
110 public void putAnnotationOffset(int oldOffset, int newOffset) { in putAnnotationOffset() argument
111 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationOffset()
114 annotationOffsets.put(oldOffset, newOffset); in putAnnotationOffset()
117 public void putAnnotationSetOffset(int oldOffset, int newOffset) { in putAnnotationSetOffset() argument
118 if (oldOffset <= 0 || newOffset <= 0) { in putAnnotationSetOffset()
121 annotationSetOffsets.put(oldOffset, newOffset); in putAnnotationSetOffset()
124 public void putAnnotationSetRefListOffset(int oldOffset, int newOffset) { in putAnnotationSetRefListOffset() argument
[all …]