/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstType.java | 26 public final class CstType extends TypedConstant { 28 private static final HashMap<Type, CstType> interns = 29 new HashMap<Type, CstType>(100); 32 public static final CstType OBJECT = intern(Type.OBJECT); 35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS); 38 public static final CstType BYTE = intern(Type.BYTE_CLASS); 41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS); 44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS); 47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS); 50 public static final CstType LONG = intern(Type.LONG_CLASS) [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstType.java | 26 public final class CstType extends TypedConstant { 28 private static final HashMap<Type, CstType> interns = 29 new HashMap<Type, CstType>(100); 32 public static final CstType OBJECT = intern(Type.OBJECT); 35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS); 38 public static final CstType BYTE = intern(Type.BYTE_CLASS); 41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS); 44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS); 47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS); 50 public static final CstType LONG = intern(Type.LONG_CLASS) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstType.java | 26 public final class CstType extends TypedConstant { 28 private static final HashMap<Type, CstType> interns = 29 new HashMap<Type, CstType>(100); 32 public static final CstType OBJECT = intern(Type.OBJECT); 35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS); 38 public static final CstType BYTE = intern(Type.BYTE_CLASS); 41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS); 44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS); 47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS); 50 public static final CstType LONG = intern(Type.LONG_CLASS) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
IdItem.java | 19 import com.android.dexgen.rop.cst.CstType; 29 private final CstType type; 37 public IdItem(CstType type) { 58 public final CstType getDefiningClass() {
|
AnnotationUtils.java | 28 import com.android.dexgen.rop.cst.CstType; 42 private static final CstType ANNOTATION_DEFAULT_TYPE = 43 CstType.intern(Type.intern("Ldalvik/annotation/AnnotationDefault;")); 46 private static final CstType ENCLOSING_CLASS_TYPE = 47 CstType.intern(Type.intern("Ldalvik/annotation/EnclosingClass;")); 50 private static final CstType ENCLOSING_METHOD_TYPE = 51 CstType.intern(Type.intern("Ldalvik/annotation/EnclosingMethod;")); 54 private static final CstType INNER_CLASS_TYPE = 55 CstType.intern(Type.intern("Ldalvik/annotation/InnerClass;")); 58 private static final CstType MEMBER_CLASSES_TYPE [all...] |
TypeIdItem.java | 19 import com.android.dexgen.rop.cst.CstType; 36 public TypeIdItem(CstType type) { 61 CstType type = getDefiningClass();
|
/dalvik/dx/src/com/android/dx/dex/file/ |
IdItem.java | 19 import com.android.dx.rop.cst.CstType; 29 private final CstType type; 37 public IdItem(CstType type) { 58 public final CstType getDefiningClass() {
|
AnnotationUtils.java | 30 import com.android.dx.rop.cst.CstType; 42 private static final CstType ANNOTATION_DEFAULT_TYPE = 43 CstType.intern(Type.intern("Ldalvik/annotation/AnnotationDefault;")); 46 private static final CstType ENCLOSING_CLASS_TYPE = 47 CstType.intern(Type.intern("Ldalvik/annotation/EnclosingClass;")); 50 private static final CstType ENCLOSING_METHOD_TYPE = 51 CstType.intern(Type.intern("Ldalvik/annotation/EnclosingMethod;")); 54 private static final CstType INNER_CLASS_TYPE = 55 CstType.intern(Type.intern("Ldalvik/annotation/InnerClass;")); 58 private static final CstType MEMBER_CLASSES_TYPE [all...] |
TypeIdItem.java | 21 import com.android.dx.rop.cst.CstType; 34 public TypeIdItem(CstType type) { 59 CstType type = getDefiningClass();
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
IdItem.java | 19 import com.android.dx.rop.cst.CstType; 29 private final CstType type; 37 public IdItem(CstType type) { 58 public final CstType getDefiningClass() {
|
AnnotationUtils.java | 28 import com.android.dx.rop.cst.CstType; 41 private static final CstType ANNOTATION_DEFAULT_TYPE = 42 CstType.intern(Type.intern("Ldalvik/annotation/AnnotationDefault;")); 45 private static final CstType ENCLOSING_CLASS_TYPE = 46 CstType.intern(Type.intern("Ldalvik/annotation/EnclosingClass;")); 49 private static final CstType ENCLOSING_METHOD_TYPE = 50 CstType.intern(Type.intern("Ldalvik/annotation/EnclosingMethod;")); 53 private static final CstType INNER_CLASS_TYPE = 54 CstType.intern(Type.intern("Ldalvik/annotation/InnerClass;")); 57 private static final CstType MEMBER_CLASSES_TYPE [all...] |
TypeIdItem.java | 20 import com.android.dx.rop.cst.CstType; 34 public TypeIdItem(CstType type) { 59 CstType type = getDefiningClass();
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
InnerClassList.java | 20 import com.android.dx.rop.cst.CstType; 58 public void set(int n, CstType innerClass, CstType outerClass, 68 private final CstType innerClass; 71 private final CstType outerClass; 89 public Item(CstType innerClass, CstType outerClass, 106 public CstType getInnerClass() { 115 public CstType getOuterClass() {
|
AttEnclosingMethod.java | 20 import com.android.dx.rop.cst.CstType; 31 private final CstType type; 43 public AttEnclosingMethod(CstType type, CstNat method) { 64 public CstType getEnclosingClass() {
|
/dalvik/dexgen/src/com/android/dexgen/rop/ |
StdField.java | 20 import com.android.dexgen.rop.cst.CstType; 37 public StdField(CstType definingClass, int accessFlags, CstNat nat, 48 this(CstType.intern(field.getDeclaringClass()), 51 CstType.intern(field.getType()).getDescriptor()), 64 this(CstType.intern(definingClass), 66 new CstNat(new CstUtf8(name), CstType.intern(type).getDescriptor()),
|
StdMember.java | 20 import com.android.dexgen.rop.cst.CstType; 29 private final CstType definingClass; 48 public StdMember(CstType definingClass, int accessFlags, CstNat nat, 82 public final CstType getDefiningClass() {
|
Member.java | 20 import com.android.dexgen.rop.cst.CstType; 32 public CstType getDefiningClass();
|
/cts/tools/dasm/src/dasm/ |
DasmCatchBuilder.java | 23 import com.android.dx.rop.cst.CstType; 47 Hashtable<CstType, String> type_branch = 48 new Hashtable<CstType, String>(); 83 CstType type; 85 type = CstType.OBJECT; 87 type = CstType.intern(Type.internClassName(exception)); 121 Enumeration<CstType> keys = unprocessed_catches.elementAt(i) 191 Enumeration<CstType> keys = uc.type_branch.keys(); 195 CstType type = keys.nextElement(); 204 if (type.equals(CstType.OBJECT)) [all...] |
/dalvik/dx/src/com/android/dx/cf/iface/ |
StdMember.java | 21 import com.android.dx.rop.cst.CstType; 29 private final CstType definingClass; 48 public StdMember(CstType definingClass, int accessFlags, CstNat nat, 82 public final CstType getDefiningClass() {
|
StdField.java | 21 import com.android.dx.rop.cst.CstType; 37 public StdField(CstType definingClass, int accessFlags, CstNat nat,
|
StdMethod.java | 21 import com.android.dx.rop.cst.CstType; 40 public StdMethod(CstType definingClass, int accessFlags, CstNat nat,
|
/dalvik/dx/src/com/android/dx/dex/code/ |
ArrayData.java | 25 import com.android.dx.rop.cst.CstType; 82 if (arrayType == CstType.BYTE_ARRAY || 83 arrayType == CstType.BOOLEAN_ARRAY) { 85 } else if (arrayType == CstType.SHORT_ARRAY || 86 arrayType == CstType.CHAR_ARRAY) { 88 } else if (arrayType == CstType.INT_ARRAY || 89 arrayType == CstType.FLOAT_ARRAY) { 91 } else if (arrayType == CstType.LONG_ARRAY || 92 arrayType == CstType.DOUBLE_ARRAY) {
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
ArrayData.java | 80 if (arrayType == CstType.BYTE_ARRAY || 81 arrayType == CstType.BOOLEAN_ARRAY) { 83 } else if (arrayType == CstType.SHORT_ARRAY || 84 arrayType == CstType.CHAR_ARRAY) { 86 } else if (arrayType == CstType.INT_ARRAY || 87 arrayType == CstType.FLOAT_ARRAY) { 89 } else if (arrayType == CstType.LONG_ARRAY || 90 arrayType == CstType.DOUBLE_ARRAY) {
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
ArrayData.java | 80 if (arrayType == CstType.BYTE_ARRAY || 81 arrayType == CstType.BOOLEAN_ARRAY) { 83 } else if (arrayType == CstType.SHORT_ARRAY || 84 arrayType == CstType.CHAR_ARRAY) { 86 } else if (arrayType == CstType.INT_ARRAY || 87 arrayType == CstType.FLOAT_ARRAY) { 89 } else if (arrayType == CstType.LONG_ARRAY || 90 arrayType == CstType.DOUBLE_ARRAY) {
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Constants.java | 29 import com.android.dx.rop.cst.CstType; 65 return new CstType(TypeId.get((Class<?>) value).ropType); 67 return new CstType(((TypeId) value).ropType);
|