Searched refs:typeList (Results 1 - 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/code/
H A DConcreteMethod.java119 LocalVariableList typeList = LocalVariableList.EMPTY;
126 typeList =
127 LocalVariableList.concat(typeList,
131 if (typeList.size() != 0) {
134 localVariables, typeList);
/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/dex/cf/
H A DAttributeTranslator.java354 StdTypeList typeList = new StdTypeList(membersSize);
356 typeList.set(i, membersList.get(i));
358 typeList.setImmutable();
359 result.add(AnnotationUtils.makeMemberClasses(typeList));
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java153 public TypeList adjustTypeList(TypeList typeList) { argument
154 if (typeList == TypeList.EMPTY) {
155 return typeList;
157 short[] types = typeList.getTypes().clone();
H A DDexMerger.java122 typeListOut = dexOut.appendSection(writerSizes.typeList, "type list");
1075 private int typeList; field in class:DexMerger.WriterSizes
1100 typeList = dexMerger.typeListOut.used();
1121 typeList += fourByteAlign(contents.typeLists.byteCount); // We count each dex's
1157 typeList = fourByteAlign(typeList);
1174 return header + idsDefs + mapList + typeList + classData + code + stringData + debugInfo
/dalvik/dx/src/com/android/dex/
H A DDex.java697 public void writeTypeList(TypeList typeList) { argument
698 short[] types = typeList.getTypes();

Completed in 726 milliseconds