Home
last modified time | relevance | path

Searched refs:orig (Results 1 – 9 of 9) sorted by relevance

/dalvik/dx/src/com/android/dx/command/
DMain.java182 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/
DForm35c.java167 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/
DForm35c.java184 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/
DExecutionStack.java285 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/
DRegisterSpec.java520 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/
DRegisterSpec.java524 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/
DSsaRenamer.java198 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/
DLocalList.java833 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/
DLocalList.java829 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()