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

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DAnnotationsDirectoryItem.java277 int elementCount = listSize(fieldAnnotations)
278 + listSize(methodAnnotations) + listSize(parameterAnnotations);
287 int fieldsSize = listSize(fieldAnnotations);
288 int methodsSize = listSize(methodAnnotations);
289 int parametersSize = listSize(parameterAnnotations);
345 private static int listSize(ArrayList<?> list) { method in class:AnnotationsDirectoryItem
H A DCatchStructs.java150 int listSize = list.size();
158 out.writeSignedLeb128(-(listSize - 1));
159 listSize--;
161 out.writeSignedLeb128(listSize);
164 for (int i = 0; i < listSize; i++) {
172 out.writeUnsignedLeb128(list.get(listSize).getHandler());
/dalvik/dx/src/com/android/dx/dex/file/
H A DAnnotationsDirectoryItem.java277 int elementCount = listSize(fieldAnnotations)
278 + listSize(methodAnnotations) + listSize(parameterAnnotations);
287 int fieldsSize = listSize(fieldAnnotations);
288 int methodsSize = listSize(methodAnnotations);
289 int parametersSize = listSize(parameterAnnotations);
345 private static int listSize(ArrayList<?> list) { method in class:AnnotationsDirectoryItem
H A DCatchStructs.java148 int listSize = list.size();
156 out.writeSleb128(-(listSize - 1));
157 listSize--;
159 out.writeSleb128(listSize);
162 for (int i = 0; i < listSize; i++) {
170 out.writeUleb128(list.get(listSize).getHandler());
/dalvik/dx/src/com/android/dx/ssa/
H A DSCCP.java552 int listSize = cfgWorklist.size() - 1;
553 SsaBasicBlock block = cfgWorklist.remove(listSize);
558 int listSize = cfgPhiWorklist.size() - 1;
559 SsaBasicBlock block = cfgPhiWorklist.remove(listSize);
564 int listSize = varyingWorklist.size() - 1;
565 SsaInsn insn = varyingWorklist.remove(listSize);
578 int listSize = ssaWorklist.size() - 1;
579 SsaInsn insn = ssaWorklist.remove(listSize);
H A DEscapeAnalysis.java330 int listSize = regWorklist.size() - 1;
331 RegisterSpec def = regWorklist.remove(listSize);

Completed in 4568 milliseconds