Home
last modified time | relevance | path

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

/dalvik/dexgen/src/com/android/dexgen/rop/
DByteCatchList.java29 public final class ByteCatchList extends FixedSizeList { class
31 public static final ByteCatchList EMPTY = new ByteCatchList(0);
38 public ByteCatchList(int count) { in ByteCatchList() method in ByteCatchList
101 public ByteCatchList listFor(int pc) { in listFor()
118 ByteCatchList result = new ByteCatchList(resultSz); in listFor()
DByteBlock.java40 private final ByteCatchList catches;
56 ByteCatchList catches) { in ByteBlock()
142 public ByteCatchList getCatches() { in getCatches()
/dalvik/dx/src/com/android/dx/cf/code/
DByteCatchList.java29 public final class ByteCatchList extends FixedSizeList { class
31 public static final ByteCatchList EMPTY = new ByteCatchList(0);
38 public ByteCatchList(int count) { in ByteCatchList() method in ByteCatchList
101 public ByteCatchList listFor(int pc) { in listFor()
118 ByteCatchList result = new ByteCatchList(resultSz); in listFor()
DByteBlock.java40 private final ByteCatchList catches;
56 ByteCatchList catches) { in ByteBlock()
143 public ByteCatchList getCatches() { in getCatches()
DBasicBlocker.java68 private final ByteCatchList[] catchLists;
113 catchLists = new ByteCatchList[sz]; in BasicBlocker()
301 ByteCatchList blockCatches; in getBlockList()
313 blockCatches = ByteCatchList.EMPTY; in getBlockList()
317 blockCatches = ByteCatchList.EMPTY; in getBlockList()
340 ByteCatchList catches = method.getCatches(); in doit()
366 ByteCatchList.Item item = catches.get(i); in doit()
445 ByteCatchList catches = method.getCatches().listFor(offset); in visitThrowing()
DConcreteMethod.java227 public ByteCatchList getCatches() { in getCatches()
DRopper.java781 ByteCatchList catches = block.getCatches(); in processBlock()
912 ByteCatchList.Item one = catches.get(i); in processBlock()
/dalvik/dx/src/com/android/dx/cf/attrib/
DAttCode.java19 import com.android.dx.cf.code.ByteCatchList;
41 private final ByteCatchList catches;
56 ByteCatchList catches, AttributeList attributes) { in AttCode()
134 public ByteCatchList getCatches() { in getCatches()
/dalvik/dx/src/com/android/dx/command/dump/
DBlockDumper.java22 import com.android.dx.cf.code.ByteCatchList;
248 ByteCatchList catches = bb.getCatches(); in regularDump()
251 ByteCatchList.Item one = catches.get(j); in regularDump()
/dalvik/dx/src/com/android/dx/cf/direct/
DStdAttributeFactory.java41 import com.android.dx.cf.code.ByteCatchList;
287 ByteCatchList catches = (exceptionTableLength == 0) ? in code()
288 ByteCatchList.EMPTY : in code()
289 new ByteCatchList(exceptionTableLength); in code()