Searched defs:Entry (Results 1 - 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java48 public Entry get(int n) {
49 return (Entry) get0(n);
75 Entry entry = get(i);
110 Entry last = get(size - 1);
122 set0(n, new Entry(exceptionType, handler));
131 public void set(int n, Entry entry) {
147 Entry thisEntry = get(i);
148 Entry otherEntry = other.get(i);
165 * Entry in the list.
167 public static class Entry implement class in class:CatchHandlerList
180 public Entry(CstType exceptionType, int handler) { method in class:CatchHandlerList.Entry
[all...]
H A DCatchTable.java49 public Entry get(int n) {
50 return (Entry) get0(n);
59 public void set(int n, Entry entry) {
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
93 * Entry in a catch list.
95 public static class Entry implements Comparable<Entry> { class in class:CatchTable
112 public Entry(int start, int end, CatchHandlerList handlers) { method in class:CatchTable.Entry
141 if (other instanceof Entry) {
[all...]
H A DPositionList.java76 PositionList.Entry[] arr = new PositionList.Entry[sz];
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
131 public Entry get(int n) {
132 return (Entry) get0(n);
141 public void set(int n, Entry entry) {
146 * Entry in a position list.
148 public static class Entry { class in class:PositionList
161 public Entry (int address, SourcePosition position) { method in class:PositionList.Entry
H A DLocalList.java59 public Entry get(int n) {
60 return (Entry) get0(n);
69 public void set(int n, Entry entry) {
118 * Entry in a local list.
120 public static class Entry implements Comparable<Entry> { class in class:LocalList
141 public Entry(int address, Disposition disposition, RegisterSpec spec) { method in class:LocalList.Entry
174 if (!(other instanceof Entry)) {
178 return (compareTo((Entry) other) == 0);
189 public int compareTo(Entry othe
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java48 public Entry get(int n) {
49 return (Entry) get0(n);
75 Entry entry = get(i);
110 Entry last = get(size - 1);
122 set0(n, new Entry(exceptionType, handler));
131 public void set(int n, Entry entry) {
147 Entry thisEntry = get(i);
148 Entry otherEntry = other.get(i);
165 * Entry in the list.
167 public static class Entry implement class in class:CatchHandlerList
180 public Entry(CstType exceptionType, int handler) { method in class:CatchHandlerList.Entry
[all...]
H A DCatchTable.java49 public Entry get(int n) {
50 return (Entry) get0(n);
59 public void set(int n, Entry entry) {
75 Entry thisEntry = get(i);
76 Entry otherEntry = other.get(i);
93 * Entry in a catch list.
95 public static class Entry implements Comparable<Entry> { class in class:CatchTable
112 public Entry(int start, int end, CatchHandlerList handlers) { method in class:CatchTable.Entry
141 if (other instanceof Entry) {
[all...]
H A DPositionList.java76 PositionList.Entry[] arr = new PositionList.Entry[sz];
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos);
131 public Entry get(int n) {
132 return (Entry) get0(n);
141 public void set(int n, Entry entry) {
146 * Entry in a position list.
148 public static class Entry { class in class:PositionList
161 public Entry (int address, SourcePosition position) { method in class:PositionList.Entry
H A DLocalList.java59 public Entry get(int n) {
60 return (Entry) get0(n);
69 public void set(int n, Entry entry) {
118 * Entry in a local list.
120 public static class Entry implements Comparable<Entry> { class in class:LocalList
141 public Entry(int address, Disposition disposition, RegisterSpec spec) { method in class:LocalList.Entry
174 if (!(other instanceof Entry)) {
178 return (compareTo((Entry) other) == 0);
189 public int compareTo(Entry othe
[all...]

Completed in 98 milliseconds