Home
last modified time | relevance | path

Searched refs:types (Results 1 – 24 of 24) sorted by relevance

/dalvik/hit/src/com/android/hit/
DClassObj.java52 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()
DClassInstance.java47 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()
DHprofParser.java485 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/
DSortableType.java72 public boolean tryAssignDepth(SortableType[] types) { in tryAssignDepth() argument
77 SortableType sortableSupertype = types[classDef.getSupertypeIndex()]; in tryAssignDepth()
88 SortableType implemented = types[interfaceIndex]; in tryAssignDepth()
DIndexMap.java149 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()
DDexMerger.java535 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/
DAnnotationUtils.java153 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/
DAnnotationUtils.java152 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/
DDexDataMap.cpp53 map->types = (u2*) (map->offsets + maxCount); in dexDataMapAlloc()
86 map->types[map->count] = type; in dexDataMapAdd()
112 return map->types[guessIdx]; in dexDataMapGet()
DDexDataMap.h30 u2* types; /* corresponding array of item types */ member
/dalvik/dx/src/com/android/dx/rop/code/
DRops.java1344 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/
DRops.java1344 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/
Dinfo.txt2 the appropriate types.
/dalvik/dx/tests/105-verify-load-store-ops/
Dinfo.txt2 actually of the appropriate types.
/dalvik/dx/tests/106-verify-object-ops/
Dinfo.txt2 arguments are actually of the appropriate types.
/dalvik/dx/tests/101-verify-wide-math/
Dinfo.txt3 the appropriate types.
/dalvik/dx/tests/104-verify-return-ops/
Dinfo.txt2 the appropriate types and that the opcode matches the method signature.
/dalvik/dx/tests/102-verify-nonwide-math/
Dinfo.txt3 the appropriate types.
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DDexData.java207 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/
DBaseMachine.java138 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/
DREADME.txt24 and argument types are shown as descriptor strings.
/dalvik/dx/
DNOTICE46 and conversions to other media types.
/dalvik/dexdump/
DNOTICE46 and conversions to other media types.
/dalvik/
DNOTICE51 and conversions to other media types.