Searched refs:typeList (Results 1 - 6 of 6) sorted by last modified time

/dalvik/libdex/
H A DDexProto.cpp137 const DexTypeList* typeList = dexGetProtoParameters(dexFile, protoId); local
139 u4 paramCount = (typeList == NULL) ? 0 : typeList->size;
143 u4 idx = dexTypeListGetIdx(typeList, i);
155 u4 idx = dexTypeListGetIdx(typeList, i);
220 const DexTypeList* typeList = local
222 return (typeList == NULL) ? 0 : typeList->size;
/dalvik/dx/src/com/android/dx/cf/code/
H A DConcreteMethod.java126 LocalVariableList typeList = LocalVariableList.EMPTY;
133 typeList =
134 LocalVariableList.concat(typeList,
138 if (typeList.size() != 0) {
141 localVariables, typeList);
/dalvik/dx/src/com/android/dx/dex/cf/
H A DAttributeTranslator.java337 StdTypeList typeList = new StdTypeList(membersSize);
339 typeList.set(i, membersList.get(i));
341 typeList.setImmutable();
342 result.add(AnnotationUtils.makeMemberClasses(typeList));
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java685 public void writeTypeList(TypeList typeList) { argument
686 short[] types = typeList.getTypes();
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java120 typeListOut = dexOut.appendSection(writerSizes.typeList, "type list");
976 private int typeList; field in class:DexMerger.WriterSizes
999 typeList = dexMerger.typeListOut.used();
1019 typeList += contents.typeLists.byteCount;
1044 typeList = DexBuffer.fourByteAlign(typeList);
1049 return header + idsDefs + mapList + typeList + classData + code + stringData + debugInfo
H A DIndexMap.java119 public TypeList adjustTypeList(TypeList typeList) { argument
120 if (typeList == TypeList.EMPTY) {
121 return typeList;
123 short[] types = typeList.getTypes().clone();

Completed in 260 milliseconds