Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/attribute/
DExceptionsAttribute.java35 public int[] u2exceptionIndexTable; field in ExceptionsAttribute
51 int[] u2exceptionIndexTable) in ExceptionsAttribute() argument
56 this.u2exceptionIndexTable = u2exceptionIndexTable; in ExceptionsAttribute()
76 clazz.constantPoolEntryAccept(u2exceptionIndexTable[index], in exceptionEntriesAccept()
/external/proguard/src/proguard/classfile/editor/
DExceptionsAttributeEditor.java53 int[] exceptionIndexTable = targetExceptionsAttribute.u2exceptionIndexTable; in addException()
58 targetExceptionsAttribute.u2exceptionIndexTable = new int[exceptionIndexTableLength+1]; in addException()
60 targetExceptionsAttribute.u2exceptionIndexTable, 0, in addException()
62 exceptionIndexTable = targetExceptionsAttribute.u2exceptionIndexTable; in addException()
DConstantPoolRemapper.java353 remapConstantIndexArray(exceptionsAttribute.u2exceptionIndexTable, in visitExceptionsAttribute()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java405 …exceptionsAttribute.u2exceptionIndexTable = new int[exceptionsAttribute.u2exceptionIndexTableLengt… in visitExceptionsAttribute()
408 exceptionsAttribute.u2exceptionIndexTable[index] = dataInput.readUnsignedShort(); in visitExceptionsAttribute()
DProgramClassWriter.java390 dataOutput.writeShort(exceptionsAttribute.u2exceptionIndexTable[index]); in visitExceptionsAttribute()