Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dex/
DCode.java96 final int[] typeIndexes; field in Code.CatchHandler
101 public CatchHandler(int[] typeIndexes, int[] addresses, int catchAllAddress, int offset) { in CatchHandler() argument
102 this.typeIndexes = typeIndexes; in CatchHandler()
109 return typeIndexes; in getTypeIndexes()
DDex.java539 int[] typeIndexes = new int[handlersCount]; in readCatchHandler() local
542 typeIndexes[i] = readUleb128(); in readCatchHandler()
546 return new CatchHandler(typeIndexes, addresses, catchAllAddress, offset); in readCatchHandler()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java1034 int[] typeIndexes = catchHandler.getTypeIndexes(); in transformEncodedCatchHandler() local
1038 codeOut.writeSleb128(-typeIndexes.length); in transformEncodedCatchHandler()
1040 codeOut.writeSleb128(typeIndexes.length); in transformEncodedCatchHandler()
1043 for (int i = 0; i < typeIndexes.length; i++) { in transformEncodedCatchHandler()
1044 codeOut.writeUleb128(indexMap.adjustType(typeIndexes[i])); in transformEncodedCatchHandler()