Searched defs:typeList (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java145 public TypeList adjustTypeList(TypeList typeList) { argument
146 if (typeList == TypeList.EMPTY) {
147 return typeList;
149 short[] types = typeList.getTypes().clone();
H A DDexMerger.java122 typeListOut = dexOut.appendSection(writerSizes.typeList, "type list");
1007 private int typeList; field in class:DexMerger.WriterSizes
1031 typeList = dexMerger.typeListOut.used();
1052 typeList += contents.typeLists.byteCount;
1082 typeList = fourByteAlign(typeList);
1099 return header + idsDefs + mapList + typeList + classData + code + stringData + debugInfo
/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;

Completed in 142 milliseconds