Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/attribute/
DExceptionsAttribute.java34 public int u2exceptionIndexTableLength; field in ExceptionsAttribute
50 int u2exceptionIndexTableLength, in ExceptionsAttribute() argument
55 this.u2exceptionIndexTableLength = u2exceptionIndexTableLength; in ExceptionsAttribute()
74 for (int index = 0; index < u2exceptionIndexTableLength; index++) in exceptionEntriesAccept()
/external/proguard/src/proguard/classfile/editor/
DExceptionsAttributeEditor.java52 int exceptionIndexTableLength = targetExceptionsAttribute.u2exceptionIndexTableLength; in addException()
66 … exceptionIndexTable[targetExceptionsAttribute.u2exceptionIndexTableLength++] = exceptionIndex; in addException()
DAttributeAdder.java245 exceptionsAttribute.u2exceptionIndexTableLength > 0 ? in visitExceptionsAttribute()
246 new int[exceptionsAttribute.u2exceptionIndexTableLength] : in visitExceptionsAttribute()
DConstantPoolRemapper.java354 exceptionsAttribute.u2exceptionIndexTableLength); in visitExceptionsAttribute()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java403 exceptionsAttribute.u2exceptionIndexTableLength = dataInput.readUnsignedShort(); in visitExceptionsAttribute()
405 …ceptionsAttribute.u2exceptionIndexTable = new int[exceptionsAttribute.u2exceptionIndexTableLength]; in visitExceptionsAttribute()
406 for (int index = 0; index < exceptionsAttribute.u2exceptionIndexTableLength; index++) in visitExceptionsAttribute()
DProgramClassWriter.java386 dataOutput.writeShort(exceptionsAttribute.u2exceptionIndexTableLength); in visitExceptionsAttribute()
388 for (int index = 0; index < exceptionsAttribute.u2exceptionIndexTableLength; index++) in visitExceptionsAttribute()
/external/proguard/src/proguard/classfile/attribute/visitor/
DNonEmptyAttributeFilter.java167 if (exceptionsAttribute.u2exceptionIndexTableLength > 0) in visitExceptionsAttribute()
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java509 … " Exceptions attribute (count = " + exceptionsAttribute.u2exceptionIndexTableLength + ")"); in visitExceptionsAttribute()