Searched refs:CatchHandlerList (Results 1 - 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java26 public final class CatchHandlerList extends FixedSizeList class in inherits:FixedSizeList,Comparable
27 implements Comparable<CatchHandlerList> {
29 public static final CatchHandlerList EMPTY = new CatchHandlerList(0);
36 public CatchHandlerList(int size) { method in class:CatchHandlerList
136 public int compareTo(CatchHandlerList other) {
H A DCatchTable.java25 * CatchHandlerList}.
103 private final CatchHandlerList handlers;
112 public Entry(int start, int end, CatchHandlerList handlers) {
188 public CatchHandlerList getHandlers() {
H A DStdCatchBuilder.java128 CatchHandlerList currentHandlers = CatchHandlerList.EMPTY;
144 CatchHandlerList handlers = handlersFor(block, addresses);
210 * Makes the {@link CatchHandlerList} for the given basic block.
216 private static CatchHandlerList handlersFor(BasicBlock block,
225 return CatchHandlerList.EMPTY;
253 CatchHandlerList result = new CatchHandlerList(catchSize);
275 BasicBlock end, CatchHandlerList handlers,
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java26 public final class CatchHandlerList extends FixedSizeList class in inherits:FixedSizeList,Comparable
27 implements Comparable<CatchHandlerList> {
29 public static final CatchHandlerList EMPTY = new CatchHandlerList(0);
36 public CatchHandlerList(int size) { method in class:CatchHandlerList
136 public int compareTo(CatchHandlerList other) {
H A DCatchTable.java25 * CatchHandlerList}.
103 private final CatchHandlerList handlers;
112 public Entry(int start, int end, CatchHandlerList handlers) {
188 public CatchHandlerList getHandlers() {
H A DStdCatchBuilder.java128 CatchHandlerList currentHandlers = CatchHandlerList.EMPTY;
144 CatchHandlerList handlers = handlersFor(block, addresses);
210 * Makes the {@link CatchHandlerList} for the given basic block.
216 private static CatchHandlerList handlersFor(BasicBlock block,
225 return CatchHandlerList.EMPTY;
253 CatchHandlerList result = new CatchHandlerList(catchSize);
275 BasicBlock end, CatchHandlerList handlers,
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DCatchStructs.java19 import com.android.dexgen.dex.code.CatchHandlerList;
70 private TreeMap<CatchHandlerList, Integer> handlerOffsets;
125 handlerOffsets = new TreeMap<CatchHandlerList, Integer>();
147 for (Map.Entry<CatchHandlerList, Integer> mapping :
149 CatchHandlerList list = mapping.getKey();
165 CatchHandlerList.Entry entry = list.get(i);
250 CatchHandlerList handlers = entry.getHandlers();
274 CatchHandlerList lastList = null;
276 for (Map.Entry<CatchHandlerList, Integer> mapping :
278 CatchHandlerList lis
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DCatchStructs.java19 import com.android.dx.dex.code.CatchHandlerList;
68 private TreeMap<CatchHandlerList, Integer> handlerOffsets;
123 handlerOffsets = new TreeMap<CatchHandlerList, Integer>();
145 for (Map.Entry<CatchHandlerList, Integer> mapping :
147 CatchHandlerList list = mapping.getKey();
163 CatchHandlerList.Entry entry = list.get(i);
248 CatchHandlerList handlers = entry.getHandlers();
272 CatchHandlerList lastList = null;
274 for (Map.Entry<CatchHandlerList, Integer> mapping :
276 CatchHandlerList lis
[all...]

Completed in 95 milliseconds