Searched refs:orig (Results 1 – 11 of 11) sorted by relevance
/dalvik/dx/src/com/android/dx/command/ |
D | Main.java | 171 private static String[] without(String[] orig, int n) { in without() argument 172 int len = orig.length - 1; in without() 174 System.arraycopy(orig, 0, newa, 0, n); in without() 175 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()
|
D | Form45cc.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 | 186 private static RegisterSpecList explicitize(RegisterSpecList orig) { in explicitize() argument 187 int wordCount = wordCount(orig); in explicitize() 188 int sz = orig.size(); in explicitize() 191 return orig; in explicitize() 198 RegisterSpec one = orig.get(i); in explicitize()
|
D | Form45cc.java | 196 private static RegisterSpecList explicitize(RegisterSpecList orig) { in explicitize() argument 197 int wordCount = wordCount(orig); in explicitize() 198 int sz = orig.size(); in explicitize() 201 return orig; in explicitize() 208 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 | 544 TypeBearer orig = type; in withSimpleType() local 547 if (orig instanceof Type) { in withSimpleType() 548 newType = (Type) orig; in withSimpleType() 550 newType = orig.getType(); in withSimpleType() 557 if (newType == orig) { in withSimpleType()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | SsaRenamer.java | 200 private static RegisterSpec[] dupArray(RegisterSpec[] orig) { in dupArray() argument 201 RegisterSpec[] copy = new RegisterSpec[orig.length]; in dupArray() 203 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 | 832 private static RegisterSpec filterSpec(RegisterSpec orig) { in filterSpec() argument 833 if ((orig != null) && (orig.getType() == Type.KNOWN_NULL)) { in filterSpec() 834 return orig.withType(Type.OBJECT); in filterSpec() 837 return orig; in filterSpec()
|