Searched refs:getType (Results 1 - 25 of 112) 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
H A DCstDouble.java67 public Type getType() { method in class:CstDouble
/dalvik/dx/src/com/android/dx/rop/cst/
H A DTypedConstant.java39 return getType().getBasicType();
45 return getType().getBasicFrameType();
H A DCstEnumRef.java53 public Type getType() { method in class:CstEnumRef
H A DCstBoolean.java77 public Type getType() { method in class:CstBoolean
H A DCstKnownNull.java62 public Type getType() { method in class:CstKnownNull
/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.java151 if (! Merger.isPossiblyAssignableFrom(types.getType(i), args[i])) {
153 ", expected type " + types.getType(i).toHuman() +
154 " but found " + args[i].getType().toHuman());
167 " but found " + args[0].getType().toHuman());
181 " but found " + args[0].getType().toHuman());
186 " but found " + args[1].getType().toHuman());
201 " but found " + args[0].getType().toHuman());
206 " but found " + args[1].getType().toHuman());
211 " but found " + args[2].getType().toHuman());
299 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/dx/tests/142-const-method-handle/src/constmethodhandle/
H A DTestGenerator.java105 Type mt = Type.getMethodType(Type.getType(boolean.class), Type.getType(char.class),
106 Type.getType(short.class), Type.getType(int.class),
107 Type.getType(long.class), Type.getType(float.class),
108 Type.getType(double.class), Type.getType(Object.class));
/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.java190 * registers. That is, this compares {@code getType()} on the types
220 return type.getType().equals(other.type.getType())
260 int compare = type.getType().compareTo(other.type.getType());
312 public Type getType() { method in class:RegisterSpec
313 return type.getType();
384 * shorthand for {@code getType().getCategory()}.
391 return type.getType().getCategory();
396 * convenient shorthand for {@code getType()
[all...]

Completed in 2253 milliseconds

12345