Home
last modified time | relevance | path

Searched refs:listSize (Results 1 – 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationsDirectoryItem.java281 int elementCount = listSize(fieldAnnotations) in place0()
282 + listSize(methodAnnotations) + listSize(parameterAnnotations); in place0()
291 int fieldsSize = listSize(fieldAnnotations); in writeTo0()
292 int methodsSize = listSize(methodAnnotations); in writeTo0()
293 int parametersSize = listSize(parameterAnnotations); in writeTo0()
349 private static int listSize(ArrayList<?> list) { in listSize() method in AnnotationsDirectoryItem
DCatchStructs.java147 int listSize = list.size(); in encode() local
155 out.writeSleb128(-(listSize - 1)); in encode()
156 listSize--; in encode()
158 out.writeSleb128(listSize); in encode()
161 for (int i = 0; i < listSize; i++) { in encode()
169 out.writeUleb128(list.get(listSize).getHandler()); in encode()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DAnnotationsDirectoryItem.java277 int elementCount = listSize(fieldAnnotations) in place0()
278 + listSize(methodAnnotations) + listSize(parameterAnnotations); in place0()
287 int fieldsSize = listSize(fieldAnnotations); in writeTo0()
288 int methodsSize = listSize(methodAnnotations); in writeTo0()
289 int parametersSize = listSize(parameterAnnotations); in writeTo0()
345 private static int listSize(ArrayList<?> list) { in listSize() method in AnnotationsDirectoryItem
DCatchStructs.java150 int listSize = list.size(); in encode() local
158 out.writeSignedLeb128(-(listSize - 1)); in encode()
159 listSize--; in encode()
161 out.writeSignedLeb128(listSize); in encode()
164 for (int i = 0; i < listSize; i++) { in encode()
172 out.writeUnsignedLeb128(list.get(listSize).getHandler()); in encode()
/dalvik/dx/src/com/android/dx/ssa/
DSCCP.java551 int listSize = cfgWorklist.size() - 1; in run() local
552 SsaBasicBlock block = cfgWorklist.remove(listSize); in run()
557 int listSize = cfgPhiWorklist.size() - 1; in run() local
558 SsaBasicBlock block = cfgPhiWorklist.remove(listSize); in run()
563 int listSize = varyingWorklist.size() - 1; in run() local
564 SsaInsn insn = varyingWorklist.remove(listSize); in run()
577 int listSize = ssaWorklist.size() - 1; in run() local
578 SsaInsn insn = ssaWorklist.remove(listSize); in run()
DEscapeAnalysis.java329 int listSize = regWorklist.size() - 1; in processRegister() local
330 RegisterSpec def = regWorklist.remove(listSize); in processRegister()