Searched refs:orig (Results 1 – 9 of 9) sorted by relevance
/dalvik/dx/src/com/android/dx/command/ |
D | Main.java | 182 private static String[] without(String[] orig, int n) { in without() argument 183 int len = orig.length - 1; in without() 185 System.arraycopy(orig, 0, newa, 0, n); in without() 186 System.arraycopy(orig, n + 1, newa, n, len - n); in without()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
D | Form35c.java | 167 private static RegisterSpecList explicitize(RegisterSpecList orig) { in explicitize() argument 168 int wordCount = wordCount(orig); in explicitize() 169 int sz = orig.size(); in explicitize() 172 return orig; in explicitize() 179 RegisterSpec one = orig.get(i); in explicitize()
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
D | Form35c.java | 184 private static RegisterSpecList explicitize(RegisterSpecList orig) { in explicitize() argument 185 int wordCount = wordCount(orig); in explicitize() 186 int sz = orig.size(); in explicitize() 189 return orig; in explicitize() 196 RegisterSpec one = orig.get(i); in explicitize()
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | ExecutionStack.java | 285 TypeBearer orig = stack[idx]; in change() local 287 if ((orig == null) || in change() 288 (orig.getType().getCategory() != type.getType().getCategory())) { in change() 290 stackElementString(orig) + " -> " + in change()
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
D | RegisterSpec.java | 520 TypeBearer orig = type; in withSimpleType() local 523 if (orig instanceof Type) { in withSimpleType() 524 newType = (Type) orig; in withSimpleType() 526 newType = orig.getType(); in withSimpleType() 533 if (newType == orig) { in withSimpleType()
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | RegisterSpec.java | 524 TypeBearer orig = type; in withSimpleType() local 527 if (orig instanceof Type) { in withSimpleType() 528 newType = (Type) orig; in withSimpleType() 530 newType = orig.getType(); in withSimpleType() 537 if (newType == orig) { in withSimpleType()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | SsaRenamer.java | 198 private static RegisterSpec[] dupArray(RegisterSpec[] orig) { in dupArray() argument 199 RegisterSpec[] copy = new RegisterSpec[orig.length]; in dupArray() 201 System.arraycopy(orig, 0, copy, 0, orig.length); in dupArray()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | LocalList.java | 833 private static RegisterSpec filterSpec(RegisterSpec orig) { in filterSpec() argument 834 if ((orig != null) && (orig.getType() == Type.KNOWN_NULL)) { in filterSpec() 835 return orig.withType(Type.OBJECT); in filterSpec() 838 return orig; in filterSpec()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | LocalList.java | 829 private static RegisterSpec filterSpec(RegisterSpec orig) { in filterSpec() argument 830 if ((orig != null) && (orig.getType() == Type.KNOWN_NULL)) { in filterSpec() 831 return orig.withType(Type.OBJECT); in filterSpec() 834 return orig; in filterSpec()
|