Searched refs:Entry (Results 1 - 24 of 24) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
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 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 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...]
H A DStdCatchBuilder.java126 ArrayList<CatchTable.Entry> resultList =
127 new ArrayList<CatchTable.Entry>(len);
172 CatchTable.Entry entry =
185 CatchTable.Entry entry =
266 * Makes a {@link CatchTable#Entry} for the given block range and
274 private static CatchTable.Entry makeEntry(BasicBlock start,
286 return new CatchTable.Entry(startAddress.getAddress(),
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchTable.java48 public Entry get(int n) {
49 return (Entry) get0(n);
58 public void set(int n, Entry entry) {
74 Entry thisEntry = get(i);
75 Entry otherEntry = other.get(i);
92 * Entry in a catch list.
94 public static class Entry implements Comparable<Entry> { class in class:CatchTable
111 public Entry(int start, int end, CatchHandlerList handlers) { method in class:CatchTable.Entry
140 if (other instanceof Entry) {
[all...]
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 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.java58 public Entry get(int n) {
59 return (Entry) get0(n);
68 public void set(int n, Entry entry) {
117 * Entry in a local list.
119 public static class Entry implements Comparable<Entry> { class in class:LocalList
140 public Entry(int address, Disposition disposition, RegisterSpec spec) { method in class:LocalList.Entry
173 if (!(other instanceof Entry)) {
177 return (compareTo((Entry) other) == 0);
188 public int compareTo(Entry othe
[all...]
H A DStdCatchBuilder.java125 ArrayList<CatchTable.Entry> resultList =
126 new ArrayList<CatchTable.Entry>(len);
171 CatchTable.Entry entry =
184 CatchTable.Entry entry =
265 * Makes a {@link CatchTable#Entry} for the given block range and
273 private static CatchTable.Entry makeEntry(BasicBlock start,
285 return new CatchTable.Entry(startAddress.getAddress(),
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoEncoder.java94 private final LocalList.Entry[] lastEntryForReg;
120 lastEntryForReg = new LocalList.Entry[regSize];
194 ArrayList<PositionList.Entry> sortedPositions = buildSortedPositions();
195 ArrayList<LocalList.Entry> methodArgs = extractMethodArguments();
286 LocalList.Entry entry = locals.get(curLocalIdx++);
288 LocalList.Entry prevEntry = lastEntryForReg[reg];
349 ArrayList<PositionList.Entry> sortedPositions)
369 private void emitHeader(ArrayList<PositionList.Entry> sortedPositions,
370 ArrayList<LocalList.Entry> methodArgs) throws IOException {
376 PositionList.Entry entr
[all...]
H A DCatchStructs.java147 for (Map.Entry<CatchHandlerList, Integer> mapping :
165 CatchHandlerList.Entry entry = list.get(i);
204 CatchTable.Entry one = table.get(i);
249 CatchTable.Entry entry = table.get(i);
276 for (Map.Entry<CatchHandlerList, Integer> mapping :
H A DDebugInfoDecoder.java470 PositionList.Entry ple = pl.get(i);
525 LocalList.Entry origEntry = ll.get(i);
H A DMixedItemSection.java254 for (Map.Entry<String, OffsettedItem> entry : index.entrySet()) {
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoEncoder.java102 private final LocalList.Entry[] lastEntryForReg;
128 lastEntryForReg = new LocalList.Entry[regSize];
202 ArrayList<PositionList.Entry> sortedPositions = buildSortedPositions();
203 ArrayList<LocalList.Entry> methodArgs = extractMethodArguments();
294 LocalList.Entry entry = locals.get(curLocalIdx++);
296 LocalList.Entry prevEntry = lastEntryForReg[reg];
357 ArrayList<PositionList.Entry> sortedPositions)
377 private void emitHeader(ArrayList<PositionList.Entry> sortedPositions,
378 ArrayList<LocalList.Entry> methodArgs) throws IOException {
384 PositionList.Entry entr
[all...]
H A DCatchStructs.java144 for (Map.Entry<CatchHandlerList, Integer> mapping :
162 CatchHandlerList.Entry entry = list.get(i);
201 CatchTable.Entry one = table.get(i);
246 CatchTable.Entry entry = table.get(i);
273 for (Map.Entry<CatchHandlerList, Integer> mapping :
H A DMemberIdsSection.java78 for (Map.Entry<String, AtomicInteger> entry : membersByPackage.entrySet()) {
H A DDebugInfoDecoder.java474 PositionList.Entry ple = pl.get(i);
529 LocalList.Entry origEntry = ll.get(i);
H A DMixedItemSection.java253 for (Map.Entry<String, OffsettedItem> entry : index.entrySet()) {
/dalvik/tests/062-character-encodings/src/
H A DMain.java19 for (Map.Entry<String, Charset> e : all.entrySet()) {
/dalvik/tests/063-process-manager/src/
H A DMain.java29 for (Map.Entry<Thread, StackTraceElement[]> entry :
/dalvik/dx/src/com/android/dx/ssa/
H A DConstCollector.java235 for (Map.Entry<TypedConstant, Integer> entry : countUses.entrySet()) {
/dalvik/dx/src/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java164 for (Map.Entry<LocalItem, ArrayList<RegisterSpec>> e :
1003 for (Map.Entry<LocalItem, ArrayList<RegisterSpec>> entry :
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java810 for (Map.Entry<String, byte[]> e :

Completed in 328 milliseconds