Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/command/
DMain.java171 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/
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()
DForm45cc.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.java186 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()
DForm45cc.java196 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/
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.java544 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/
DSsaRenamer.java200 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/
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.java832 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()