Searched refs:getType (Results 1 - 25 of 110) sorted by relevance

12345

/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DTypedConstant.java37 return getType().getBasicType();
42 return getType().getBasicFrameType();
H A DCstEnumRef.java52 public Type getType() { method in class:CstEnumRef
H A DCstBoolean.java76 public Type getType() { method in class:CstBoolean
H A DCstKnownNull.java61 public Type getType() { method in class:CstKnownNull
H A DCstLong.java64 public Type getType() { method in class:CstLong
H A DCstByte.java76 public Type getType() { method in class:CstByte
H A DCstChar.java76 public Type getType() { method in class:CstChar
/dalvik/dx/src/com/android/dx/rop/cst/
H A DTypedConstant.java37 return getType().getBasicType();
42 return getType().getBasicFrameType();
H A DCstEnumRef.java52 public Type getType() { method in class:CstEnumRef
H A DCstBoolean.java76 public Type getType() { method in class:CstBoolean
H A DCstKnownNull.java61 public Type getType() { method in class:CstKnownNull
H A DCstLong.java64 public Type getType() { method in class:CstLong
/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DTypeBearer.java31 public Type getType(); method in interface:TypeBearer
H A DTypeList.java49 public Type getType(int n); method in interface:TypeList
/dalvik/dx/src/com/android/dx/rop/type/
H A DTypeBearer.java31 public Type getType(); method in interface:TypeBearer
H A DTypeList.java49 public Type getType(int n); method in interface:TypeList
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DFieldIdItem.java46 typeIds.intern(getFieldRef().getType());
62 return typeIds.indexOf(getFieldRef().getType());
H A DTypeListItem.java71 typeIds.intern(list.getType(i));
100 Type one = list.getType(i);
110 out.writeShort(typeIds.indexOf(list.getType(i)));
/dalvik/dx/src/com/android/dx/dex/file/
H A DFieldIdItem.java46 typeIds.intern(getFieldRef().getType());
62 return typeIds.indexOf(getFieldRef().getType());
H A DTypeListItem.java71 typeIds.intern(list.getType(i));
100 Type one = list.getType(i);
110 out.writeShort(typeIds.indexOf(list.getType(i)));
/dalvik/dx/src/com/android/dx/cf/code/
H A DBaseMachine.java147 if (! Merger.isPossiblyAssignableFrom(types.getType(i), args[i])) {
149 ", expected type " + types.getType(i).toHuman() +
150 " but found " + args[i].getType().toHuman());
162 " but found " + args[0].getType().toHuman());
175 " but found " + args[0].getType().toHuman());
180 " but found " + args[1].getType().toHuman());
194 " but found " + args[0].getType().toHuman());
199 " but found " + args[1].getType().toHuman());
204 " but found " + args[2].getType().toHuman());
283 result += args[i].getType()
[all...]
H A DExecutionStack.java161 category = type.getType().getCategory();
236 * for {@code peek(n).getType()}.
241 return peek(n).getType();
257 stackPtr -= result.getType().getCategory();
288 (orig.getType().getCategory() != type.getType().getCategory())) {
/dalvik/hit/src/com/android/hit/
H A DRootType.java46 public final int getType() { method in class:RootType
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRegisterSpec.java177 * registers. That is, this compares {@code getType()} on the types
207 return type.getType().equals(other.type.getType())
243 int compare = type.getType().compareTo(other.type.getType());
292 public Type getType() { method in class:RegisterSpec
293 return type.getType();
360 * shorthand for {@code getType().getCategory()}.
367 return type.getType().getCategory();
372 * convenient shorthand for {@code getType()
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegisterSpec.java182 * registers. That is, this compares {@code getType()} on the types
212 return type.getType().equals(other.type.getType())
248 int compare = type.getType().compareTo(other.type.getType());
297 public Type getType() { method in class:RegisterSpec
298 return type.getType();
365 * shorthand for {@code getType().getCategory()}.
372 return type.getType().getCategory();
377 * convenient shorthand for {@code getType()
[all...]

Completed in 3487 milliseconds

12345