Home
last modified time | relevance | path

Searched refs:Entry (Results 1 – 22 of 22) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
DCatchTable.java48 public Entry get(int n) { in get()
49 return (Entry) get0(n); in get()
58 public void set(int n, Entry entry) { in set()
74 Entry thisEntry = get(i); in compareTo()
75 Entry otherEntry = other.get(i); in compareTo()
94 public static class Entry implements Comparable<Entry> { class in CatchTable
111 public Entry(int start, int end, CatchHandlerList handlers) { in Entry() method in CatchTable.Entry
140 if (other instanceof Entry) { in equals()
141 return (compareTo((Entry) other) == 0); in equals()
148 public int compareTo(Entry other) { in compareTo()
DCatchHandlerList.java48 public Entry get(int n) { in get()
49 return (Entry) get0(n); in get()
75 Entry entry = get(i); in toHuman()
110 Entry last = get(size - 1); in catchesAll()
122 set0(n, new Entry(exceptionType, handler)); in set()
131 public void set(int n, Entry entry) { in set()
147 Entry thisEntry = get(i); in compareTo()
148 Entry otherEntry = other.get(i); in compareTo()
167 public static class Entry implements Comparable<Entry> { class in CatchHandlerList
180 public Entry(CstType exceptionType, int handler) { in Entry() method in CatchHandlerList.Entry
[all …]
DPositionList.java76 PositionList.Entry[] arr = new PositionList.Entry[sz]; in make()
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos); in make()
131 public Entry get(int n) { in get()
132 return (Entry) get0(n); in get()
141 public void set(int n, Entry entry) { in set()
148 public static class Entry { class in PositionList
161 public Entry (int address, SourcePosition position) { in Entry() method in PositionList.Entry
DLocalList.java58 public Entry get(int n) { in get()
59 return (Entry) get0(n); in get()
68 public void set(int n, Entry entry) { in set()
119 public static class Entry implements Comparable<Entry> { class in LocalList
140 public Entry(int address, Disposition disposition, RegisterSpec spec) { in Entry() method in LocalList.Entry
173 if (!(other instanceof Entry)) { in equals()
177 return (compareTo((Entry) other) == 0); in equals()
188 public int compareTo(Entry other) { in compareTo()
298 public boolean matches(Entry other) { in matches()
309 public Entry withDisposition(Disposition disposition) { in withDisposition()
[all …]
DStdCatchBuilder.java125 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()
273 private static CatchTable.Entry makeEntry(BasicBlock start, in makeEntry()
285 return new CatchTable.Entry(startAddress.getAddress(), in makeEntry()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DCatchTable.java49 public Entry get(int n) { in get()
50 return (Entry) get0(n); in get()
59 public void set(int n, Entry entry) { in set()
75 Entry thisEntry = get(i); in compareTo()
76 Entry otherEntry = other.get(i); in compareTo()
95 public static class Entry implements Comparable<Entry> { class in CatchTable
112 public Entry(int start, int end, CatchHandlerList handlers) { in Entry() method in CatchTable.Entry
141 if (other instanceof Entry) { in equals()
142 return (compareTo((Entry) other) == 0); in equals()
149 public int compareTo(Entry other) { in compareTo()
DCatchHandlerList.java48 public Entry get(int n) { in get()
49 return (Entry) get0(n); in get()
75 Entry entry = get(i); in toHuman()
110 Entry last = get(size - 1); in catchesAll()
122 set0(n, new Entry(exceptionType, handler)); in set()
131 public void set(int n, Entry entry) { in set()
147 Entry thisEntry = get(i); in compareTo()
148 Entry otherEntry = other.get(i); in compareTo()
167 public static class Entry implements Comparable<Entry> { class in CatchHandlerList
180 public Entry(CstType exceptionType, int handler) { in Entry() method in CatchHandlerList.Entry
[all …]
DPositionList.java76 PositionList.Entry[] arr = new PositionList.Entry[sz]; in make()
99 arr[at] = new PositionList.Entry(insn.getAddress(), pos); in make()
131 public Entry get(int n) { in get()
132 return (Entry) get0(n); in get()
141 public void set(int n, Entry entry) { in set()
148 public static class Entry { class in PositionList
161 public Entry (int address, SourcePosition position) { in Entry() method in PositionList.Entry
DLocalList.java59 public Entry get(int n) { in get()
60 return (Entry) get0(n); in get()
69 public void set(int n, Entry entry) { in set()
120 public static class Entry implements Comparable<Entry> { class in LocalList
141 public Entry(int address, Disposition disposition, RegisterSpec spec) { in Entry() method in LocalList.Entry
174 if (!(other instanceof Entry)) { in equals()
178 return (compareTo((Entry) other) == 0); in equals()
189 public int compareTo(Entry other) { in compareTo()
299 public boolean matches(Entry other) { in matches()
310 public Entry withDisposition(Disposition disposition) { in withDisposition()
[all …]
DStdCatchBuilder.java126 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()
274 private static CatchTable.Entry makeEntry(BasicBlock start, in makeEntry()
286 return new CatchTable.Entry(startAddress.getAddress(), in makeEntry()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DDebugInfoEncoder.java94 private final LocalList.Entry[] lastEntryForReg;
120 lastEntryForReg = new LocalList.Entry[regSize]; in DebugInfoEncoder()
194 ArrayList<PositionList.Entry> sortedPositions = buildSortedPositions(); in convert0()
195 ArrayList<LocalList.Entry> methodArgs = extractMethodArguments(); in convert0()
286 LocalList.Entry entry = locals.get(curLocalIdx++); in emitLocalsAtAddress()
288 LocalList.Entry prevEntry = lastEntryForReg[reg]; in emitLocalsAtAddress()
349 ArrayList<PositionList.Entry> sortedPositions) in emitPositionsAtAddress()
369 private void emitHeader(ArrayList<PositionList.Entry> sortedPositions, in emitHeader()
370 ArrayList<LocalList.Entry> methodArgs) throws IOException { in emitHeader()
376 PositionList.Entry entry = sortedPositions.get(0); in emitHeader()
[all …]
DCatchStructs.java147 for (Map.Entry<CatchHandlerList, Integer> mapping : in encode()
165 CatchHandlerList.Entry entry = list.get(i); in encode()
204 CatchTable.Entry one = table.get(i); in writeTo()
249 CatchTable.Entry entry = table.get(i); in annotateEntries()
276 for (Map.Entry<CatchHandlerList, Integer> mapping : in annotateEntries()
DDebugInfoDecoder.java470 PositionList.Entry ple = pl.get(i); in validateEncode0()
525 LocalList.Entry origEntry = ll.get(i); in validateEncode0()
DMixedItemSection.java254 for (Map.Entry<String, OffsettedItem> entry : index.entrySet()) { in writeIndexAnnotation()
/dalvik/dx/src/com/android/dx/dex/file/
DDebugInfoEncoder.java102 private final LocalList.Entry[] lastEntryForReg;
128 lastEntryForReg = new LocalList.Entry[regSize]; in DebugInfoEncoder()
202 ArrayList<PositionList.Entry> sortedPositions = buildSortedPositions(); in convert0()
203 ArrayList<LocalList.Entry> methodArgs = extractMethodArguments(); in convert0()
294 LocalList.Entry entry = locals.get(curLocalIdx++); in emitLocalsAtAddress()
296 LocalList.Entry prevEntry = lastEntryForReg[reg]; in emitLocalsAtAddress()
357 ArrayList<PositionList.Entry> sortedPositions) in emitPositionsAtAddress()
377 private void emitHeader(ArrayList<PositionList.Entry> sortedPositions, in emitHeader()
378 ArrayList<LocalList.Entry> methodArgs) throws IOException { in emitHeader()
384 PositionList.Entry entry = sortedPositions.get(0); in emitHeader()
[all …]
DCatchStructs.java144 for (Map.Entry<CatchHandlerList, Integer> mapping : in encode()
162 CatchHandlerList.Entry entry = list.get(i); in encode()
201 CatchTable.Entry one = table.get(i); in writeTo()
246 CatchTable.Entry entry = table.get(i); in annotateEntries()
273 for (Map.Entry<CatchHandlerList, Integer> mapping : in annotateEntries()
DMemberIdsSection.java79 for (Map.Entry<String, AtomicInteger> entry : membersByPackage.entrySet()) { in getTooManyMembersMessage()
DDebugInfoDecoder.java474 PositionList.Entry ple = pl.get(i); in validateEncode0()
529 LocalList.Entry origEntry = ll.get(i); in validateEncode0()
DMixedItemSection.java253 for (Map.Entry<String, OffsettedItem> entry : index.entrySet()) { in writeIndexAnnotation()
/dalvik/dx/src/com/android/dx/ssa/
DConstCollector.java235 for (Map.Entry<TypedConstant, Integer> entry : countUses.entrySet()) { in getConstsSortedByCountUse()
/dalvik/dx/src/com/android/dx/ssa/back/
DFirstFitLocalCombiningAllocator.java208 for (Map.Entry<LocalItem, ArrayList<RegisterSpec>> e : in printLocalVars()
1112 for (Map.Entry<LocalItem, ArrayList<RegisterSpec>> entry : in getLocalItemForReg()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java900 for (Map.Entry<String, byte[]> e : in createJar()