/dalvik/hit/src/com/android/hit/ |
D | ClassObj.java | 52 int[] types = mStaticFieldTypes; in resolveReferences() local 53 final int N = types.length; in resolveReferences() 62 int type = types[i]; in resolveReferences() 139 public final void setFieldTypes(int[] types) { in setFieldTypes() argument 140 mFieldTypes = types; in setFieldTypes() 147 public final void setStaticFieldTypes(int[] types) { in setStaticFieldTypes() argument 148 mStaticFieldTypes = types; in setStaticFieldTypes() 194 int[] types = mStaticFieldTypes; in visit() local 195 final int N = types.length; in visit() 204 int type = types[i]; in visit()
|
D | ClassInstance.java | 47 private void resolve(State state, ClassObj isa, int[] types, in resolve() argument 51 final int N = types.length; in resolve() 59 int type = types[i]; in resolve() 108 int[] types = isa.mFieldTypes; in visit() local 111 final int N = types.length; in visit() 119 int type = types[i]; in visit() 159 int[] types = isa.mFieldTypes; in describeReferenceTo() local 163 final int N = types.length; in describeReferenceTo() 173 int type = types[i]; in describeReferenceTo()
|
D | HprofParser.java | 485 int[] types = new int[numEntries]; in loadClassDump() local 492 types[i] = type; in loadClassDump() 505 theClass.setFieldTypes(types); in loadClassDump()
|
/dalvik/dx/src/com/android/dx/merge/ |
D | SortableType.java | 72 public boolean tryAssignDepth(SortableType[] types) { in tryAssignDepth() argument 77 SortableType sortableSupertype = types[classDef.getSupertypeIndex()]; in tryAssignDepth() 88 SortableType implemented = types[interfaceIndex]; in tryAssignDepth()
|
D | IndexMap.java | 149 short[] types = typeList.getTypes().clone(); in adjustTypeList() local 150 for (int i = 0; i < types.length; i++) { in adjustTypeList() 151 types[i] = (short) adjustType(types[i]); in adjustTypeList() 153 return new TypeList(target, types); in adjustTypeList()
|
D | DexMerger.java | 535 SortableType[] types = getSortedTypes(); in mergeClassDefs() local 537 contentsOut.classDefs.size = types.length; in mergeClassDefs() 539 for (SortableType type : types) { in mergeClassDefs()
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | AnnotationUtils.java | 153 public static Annotation makeMemberClasses(TypeList types) { in makeMemberClasses() argument 154 CstArray array = makeCstArray(types); in makeMemberClasses() 229 public static Annotation makeThrows(TypeList types) { in makeThrows() argument 230 CstArray array = makeCstArray(types); in makeThrows() 243 private static CstArray makeCstArray(TypeList types) { in makeCstArray() argument 244 int size = types.size(); in makeCstArray() 248 list.set(i, CstType.intern(types.getType(i))); in makeCstArray()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | AnnotationUtils.java | 152 public static Annotation makeMemberClasses(TypeList types) { in makeMemberClasses() argument 153 CstArray array = makeCstArray(types); in makeMemberClasses() 228 public static Annotation makeThrows(TypeList types) { in makeThrows() argument 229 CstArray array = makeCstArray(types); in makeThrows() 242 private static CstArray makeCstArray(TypeList types) { in makeCstArray() argument 243 int size = types.size(); in makeCstArray() 247 list.set(i, CstType.intern(types.getType(i))); in makeCstArray()
|
/dalvik/libdex/ |
D | DexDataMap.cpp | 53 map->types = (u2*) (map->offsets + maxCount); in dexDataMapAlloc() 86 map->types[map->count] = type; in dexDataMapAdd() 112 return map->types[guessIdx]; in dexDataMapGet()
|
D | DexDataMap.h | 30 u2* types; /* corresponding array of item types */ member
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | Rops.java | 1344 public static Rop opIfEq(TypeList types) { in opIfEq() argument 1345 return pickIf(types, IF_EQZ_INT, IF_EQZ_OBJECT, in opIfEq() 1356 public static Rop opIfNe(TypeList types) { in opIfNe() argument 1357 return pickIf(types, IF_NEZ_INT, IF_NEZ_OBJECT, in opIfNe() 1368 public static Rop opIfLt(TypeList types) { in opIfLt() argument 1369 return pickIf(types, IF_LTZ_INT, null, IF_LT_INT, null); in opIfLt() 1379 public static Rop opIfGe(TypeList types) { in opIfGe() argument 1380 return pickIf(types, IF_GEZ_INT, null, IF_GE_INT, null); in opIfGe() 1390 public static Rop opIfGt(TypeList types) { in opIfGt() argument 1391 return pickIf(types, IF_GTZ_INT, null, IF_GT_INT, null); in opIfGt() [all …]
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
D | Rops.java | 1344 public static Rop opIfEq(TypeList types) { in opIfEq() argument 1345 return pickIf(types, IF_EQZ_INT, IF_EQZ_OBJECT, in opIfEq() 1356 public static Rop opIfNe(TypeList types) { in opIfNe() argument 1357 return pickIf(types, IF_NEZ_INT, IF_NEZ_OBJECT, in opIfNe() 1368 public static Rop opIfLt(TypeList types) { in opIfLt() argument 1369 return pickIf(types, IF_LTZ_INT, null, IF_LT_INT, null); in opIfLt() 1379 public static Rop opIfGe(TypeList types) { in opIfGe() argument 1380 return pickIf(types, IF_GEZ_INT, null, IF_GE_INT, null); in opIfGe() 1390 public static Rop opIfGt(TypeList types) { in opIfGt() argument 1391 return pickIf(types, IF_GTZ_INT, null, IF_GT_INT, null); in opIfGt() [all …]
|
/dalvik/dx/tests/103-verify-branch-ops/ |
D | info.txt | 2 the appropriate types.
|
/dalvik/dx/tests/105-verify-load-store-ops/ |
D | info.txt | 2 actually of the appropriate types.
|
/dalvik/dx/tests/106-verify-object-ops/ |
D | info.txt | 2 arguments are actually of the appropriate types.
|
/dalvik/dx/tests/101-verify-wide-math/ |
D | info.txt | 3 the appropriate types.
|
/dalvik/dx/tests/104-verify-return-ops/ |
D | info.txt | 2 the appropriate types and that the opcode matches the method signature.
|
/dalvik/dx/tests/102-verify-nonwide-math/ |
D | info.txt | 3 the appropriate types.
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
D | DexData.java | 207 protoId.types = new int[0]; in loadProtoIds() 212 protoId.types = new int[size]; in loadProtoIds() 215 protoId.types[j] = readShort() & 0xffff; in loadProtoIds() 332 String[] result = new String[protoId.types.length]; in argArrayFromProtoIndex() 334 for (int i = 0; i < protoId.types.length; i++) { in argArrayFromProtoIndex() 335 result[i] = mStrings[mTypeIds[protoId.types[i]].descriptorIdx]; in argArrayFromProtoIndex() 572 public int types[]; // contents of type list field in DexData.ProtoIdItem
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | BaseMachine.java | 138 StdTypeList types = prototype.getParameterTypes(); in popArgs() local 139 int size = types.size(); in popArgs() 147 if (! Merger.isPossiblyAssignableFrom(types.getType(i), args[i])) { in popArgs() 149 ", expected type " + types.getType(i).toHuman() + in popArgs()
|
/dalvik/tools/dexdeps/ |
D | README.txt | 24 and argument types are shown as descriptor strings.
|
/dalvik/dx/ |
D | NOTICE | 46 and conversions to other media types.
|
/dalvik/dexdump/ |
D | NOTICE | 46 and conversions to other media types.
|
/dalvik/ |
D | NOTICE | 51 and conversions to other media types.
|