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

/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java119 public TypeList adjustTypeList(TypeList typeList) { argument
120 if (typeList == TypeList.EMPTY) {
121 return typeList;
123 short[] types = typeList.getTypes().clone();
H A DDexMerger.java120 typeListOut = dexOut.appendSection(writerSizes.typeList, "type list");
988 private int typeList; field in class:DexMerger.WriterSizes
1011 typeList = dexMerger.typeListOut.used();
1031 typeList += contents.typeLists.byteCount;
1056 typeList = DexBuffer.fourByteAlign(typeList);
1061 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;
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java685 public void writeTypeList(TypeList typeList) { argument
686 short[] types = typeList.getTypes();

Completed in 1058 milliseconds