Home
last modified time | relevance | path

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

/external/proguard/src/proguard/classfile/attribute/
DCodeAttribute.java40 public ExceptionInfo[] exceptionTable; field in CodeAttribute
62 ExceptionInfo[] exceptionTable, in CodeAttribute() argument
73 this.exceptionTable = exceptionTable; in CodeAttribute()
153 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionTable[index]); in exceptionsAccept()
166 ExceptionInfo exceptionInfo = exceptionTable[index]; in exceptionsAccept()
183 ExceptionInfo exceptionInfo = exceptionTable[index]; in exceptionsAccept()
/external/proguard/src/proguard/classfile/editor/
DCodeAttributeComposer.java79 …private ExceptionInfo[] exceptionTable = new ExceptionInfo[ClassConstants.TYPICAL_EXCEPTION_TABLE_… field in CodeAttributeComposer
335 exceptionTable = in appendException()
336 (ExceptionInfo[])ArrayUtil.add(exceptionTable, in appendException()
390 ExceptionInfo exceptionInfo = exceptionTable[index]; in endCodeFragment()
448 if (codeAttribute.exceptionTable.length < exceptionTableLength) in visitCodeAttribute()
450 codeAttribute.exceptionTable = new ExceptionInfo[exceptionTableLength]; in visitCodeAttribute()
455 System.arraycopy(exceptionTable, 0, codeAttribute.exceptionTable, 0, exceptionTableLength); in visitCodeAttribute()
DCodeAttributeEditor.java457 removeEmptyExceptions(codeAttribute.exceptionTable, in visitCodeAttribute0()
/external/proguard/src/proguard/optimize/peephole/
DUnreachableExceptionRemover.java76 removeEmptyExceptions(codeAttribute.exceptionTable, in visitCodeAttribute()
/external/emma/core/java12/com/vladium/emma/instr/
DInstrVisitor.java1208 final IExceptionHandlerTable exceptionTable = attribute.getExceptionTable (); in visit() local
1209 for (int e = 0; e < exceptionTable.size (); ++ e) in visit()
1211 final Exception_info exception = exceptionTable.get (e); in visit()
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java429 codeAttribute.exceptionTable = new ExceptionInfo[codeAttribute.u2exceptionTableLength]; in visitCodeAttribute()
434 codeAttribute.exceptionTable[index] = exceptionInfo; in visitCodeAttribute()