Home
last modified time | relevance | path

Searched refs:getType (Results 1 – 25 of 111) sorted by relevance

12345

/dalvik/dx/src/com/android/dx/cf/code/
DBaseMachine.java147 if (! Merger.isPossiblyAssignableFrom(types.getType(i), args[i])) { in popArgs()
149 ", expected type " + types.getType(i).toHuman() + in popArgs()
150 " but found " + args[i].getType().toHuman()); in popArgs()
162 " but found " + args[0].getType().toHuman()); in popArgs()
175 " but found " + args[0].getType().toHuman()); in popArgs()
180 " but found " + args[1].getType().toHuman()); in popArgs()
194 " but found " + args[0].getType().toHuman()); in popArgs()
199 " but found " + args[1].getType().toHuman()); in popArgs()
204 " but found " + args[2].getType().toHuman()); in popArgs()
283 result += args[i].getType().getCategory(); in argWidth()
[all …]
DExecutionStack.java161 category = type.getType().getCategory(); in push()
241 return peek(n).getType(); in peekType()
257 stackPtr -= result.getType().getCategory(); in pop()
288 (orig.getType().getCategory() != type.getType().getCategory())) { in change()
DOneLocalsArray.java120 if (type.getType().isCategory2()) { in set()
128 if ((prev != null) && prev.getType().isCategory2()) { in set()
164 Type type = result.getType(); in getCategory1()
181 if (result.getType().isCategory1()) { in getCategory2()
DMerger.java157 Type type1 = ft1.getType(); in mergeType()
158 Type type2 = ft2.getType(); in mergeType()
221 Type supertype = supertypeBearer.getType(); in isPossiblyAssignableFrom()
222 Type subtype = subtypeBearer.getType(); in isPossiblyAssignableFrom()
/dalvik/dx/src/com/android/dx/rop/cst/
DTypedConstant.java37 return getType().getBasicType(); in getBasicType()
42 return getType().getBasicFrameType(); in getBasicFrameType()
DCstEnumRef.java52 public Type getType() { in getType() method in CstEnumRef
DCstKnownNull.java61 public Type getType() { in getType() method in CstKnownNull
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
DTypedConstant.java37 return getType().getBasicType(); in getBasicType()
42 return getType().getBasicFrameType(); in getBasicFrameType()
DCstEnumRef.java52 public Type getType() { in getType() method in CstEnumRef
DCstKnownNull.java61 public Type getType() { in getType() method in CstKnownNull
DCstBoolean.java76 public Type getType() { in getType() method in CstBoolean
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DRegisterSpec.java207 return type.getType().equals(other.type.getType()) in matchesVariable()
243 int compare = type.getType().compareTo(other.type.getType()); in compareTo()
292 public Type getType() { in getType() method in RegisterSpec
293 return type.getType(); in getType()
367 return type.getType().getCategory(); in getCategory()
379 return type.getType().isCategory1(); in isCategory1()
391 return type.getType().isCategory2(); in isCategory2()
450 Type thisType = getType(); in intersect()
451 Type otherType = other.getType(); in intersect()
526 newType = orig.getType(); in withSimpleType()
[all …]
DRegisterSpecList.java105 public Type getType(int n) { in getType() method in RegisterSpecList
106 return get(n).getType().getType(); in getType()
115 result += getType(i).getCategory(); in getWordCount()
/dalvik/dx/src/com/android/dx/rop/code/
DRegisterSpec.java211 return type.getType().equals(other.type.getType()) in matchesVariable()
247 int compare = type.getType().compareTo(other.type.getType()); in compareTo()
296 public Type getType() { in getType() method in RegisterSpec
297 return type.getType(); in getType()
371 return type.getType().getCategory(); in getCategory()
383 return type.getType().isCategory1(); in isCategory1()
395 return type.getType().isCategory2(); in isCategory2()
454 Type thisType = getType(); in intersect()
455 Type otherType = other.getType(); in intersect()
530 newType = orig.getType(); in withSimpleType()
[all …]
/dalvik/dx/src/com/android/dx/dex/file/
DFieldIdItem.java46 typeIds.intern(getFieldRef().getType()); in addContents()
62 return typeIds.indexOf(getFieldRef().getType()); in getTypoidIdx()
DTypeListItem.java70 typeIds.intern(list.getType(i)); in addContents()
99 Type one = list.getType(i); in writeTo0()
109 out.writeShort(typeIds.indexOf(list.getType(i))); in writeTo0()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DFieldIdItem.java46 typeIds.intern(getFieldRef().getType()); in addContents()
62 return typeIds.indexOf(getFieldRef().getType()); in getTypoidIdx()
DTypeListItem.java71 typeIds.intern(list.getType(i)); in addContents()
100 Type one = list.getType(i); in writeTo0()
110 out.writeShort(typeIds.indexOf(list.getType(i))); in writeTo0()
/dalvik/dx/src/com/android/dx/rop/type/
DTypeList.java49 public Type getType(int n); in getType() method
DTypeBearer.java31 public Type getType(); in getType() method
DStdTypeList.java246 sb.append(list.getType(i).toHuman()); in toHuman()
265 hash = (hash * 31) + list.getType(i).hashCode(); in hashContents()
288 if (! list1.getType(i).equals(list2.getType(i))) { in equalContents()
311 int comparison = list1.getType(i).compareTo(list2.getType(i)); in compareContents()
336 public Type getType(int n) { in getType() method in StdTypeList
/dalvik/dexgen/src/com/android/dexgen/rop/type/
DTypeList.java49 public Type getType(int n); in getType() method
DTypeBearer.java31 public Type getType(); in getType() method
DStdTypeList.java246 sb.append(list.getType(i).toHuman()); in toHuman()
265 hash = (hash * 31) + list.getType(i).hashCode(); in hashContents()
288 if (! list1.getType(i).equals(list2.getType(i))) { in equalContents()
311 int comparison = list1.getType(i).compareTo(list2.getType(i)); in compareContents()
336 public Type getType(int n) { in getType() method in StdTypeList
/dalvik/hit/src/com/android/hit/
DRootType.java46 public final int getType() { in getType() method in RootType

12345