Home
last modified time | relevance | path

Searched refs:sz2 (Results 1 – 5 of 5) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/
DLineNumberList.java45 int sz2 = list2.size(); in concat() local
46 LineNumberList result = new LineNumberList(sz1 + sz2); in concat()
52 for (int i = 0; i < sz2; i++) { in concat()
/dalvik/dx/src/com/android/dx/cf/code/
DLineNumberList.java45 int sz2 = list2.size(); in concat() local
46 LineNumberList result = new LineNumberList(sz1 + sz2); in concat()
52 for (int i = 0; i < sz2; i++) { in concat()
DBootstrapMethodsList.java93 int sz2 = list2.size(); in concat() local
94 BootstrapMethodsList result = new BootstrapMethodsList(sz1 + sz2); in concat()
100 for (int i = 0; i < sz2; i++) { in concat()
DLocalVariableList.java49 int sz2 = list2.size(); in concat() local
50 LocalVariableList result = new LocalVariableList(sz1 + sz2); in concat()
56 for (int i = 0; i < sz2; i++) { in concat()
DLocalsArraySet.java266 int sz2 = other.secondaries.size(); in mergeWithSet() local
267 int sz = Math.max(sz1, sz2); in mergeWithSet()
272 LocalsArray la2 = (i < sz2 ? other.secondaries.get(i) : null); in mergeWithSet()