Home
last modified time | relevance | path

Searched refs:CatchTable (Results 1 – 11 of 11) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
DCatchTable.java26 public final class CatchTable extends FixedSizeList class
27 implements Comparable<CatchTable> {
29 public static final CatchTable EMPTY = new CatchTable(0);
36 public CatchTable(int size) { in CatchTable() method in CatchTable
63 public int compareTo(CatchTable other) { in compareTo()
DStdCatchBuilder.java74 public CatchTable build() { in build()
121 public static CatchTable build(RopMethod method, int[] order, in build()
125 ArrayList<CatchTable.Entry> resultList = in build()
126 new ArrayList<CatchTable.Entry>(len); in build()
171 CatchTable.Entry entry = in build()
184 CatchTable.Entry entry = in build()
195 return CatchTable.EMPTY; in build()
198 CatchTable result = new CatchTable(resultSz); in build()
273 private static CatchTable.Entry makeEntry(BasicBlock start, in makeEntry()
285 return new CatchTable.Entry(startAddress.getAddress(), in makeEntry()
DCatchBuilder.java31 public CatchTable build(); in build()
DDalvCode.java50 private CatchTable catches;
193 public CatchTable getCatches() { in getCatches()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DCatchTable.java27 public final class CatchTable extends FixedSizeList class
28 implements Comparable<CatchTable> {
30 public static final CatchTable EMPTY = new CatchTable(0);
37 public CatchTable(int size) { in CatchTable() method in CatchTable
64 public int compareTo(CatchTable other) { in compareTo()
DStdCatchBuilder.java75 public CatchTable build() { in build()
122 public static CatchTable build(RopMethod method, int[] order, in build()
126 ArrayList<CatchTable.Entry> resultList = in build()
127 new ArrayList<CatchTable.Entry>(len); in build()
172 CatchTable.Entry entry = in build()
185 CatchTable.Entry entry = in build()
196 return CatchTable.EMPTY; in build()
199 CatchTable result = new CatchTable(resultSz); in build()
274 private static CatchTable.Entry makeEntry(BasicBlock start, in makeEntry()
286 return new CatchTable.Entry(startAddress.getAddress(), in makeEntry()
DCatchBuilder.java32 public CatchTable build(); in build()
DDalvCode.java51 private CatchTable catches;
194 public CatchTable getCatches() { in getCatches()
/dalvik/dx/src/com/android/dx/dex/file/
DCatchStructs.java20 import com.android.dx.dex.code.CatchTable;
49 private CatchTable table;
201 CatchTable.Entry one = table.get(i); in writeTo()
246 CatchTable.Entry entry = table.get(i); in annotateEntries()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DCatchStructs.java20 import com.android.dexgen.dex.code.CatchTable;
52 private CatchTable table;
204 CatchTable.Entry one = table.get(i); in writeTo()
249 CatchTable.Entry entry = table.get(i); in annotateEntries()
DCodeItem.java19 import com.android.dexgen.dex.code.CatchTable;