Home | History | Annotate | Download | only in merge

Lines Matching defs:dexOut

50     private final Dex dexOut;
102 dexOut = new Dex(writerSizes.size());
106 indexMaps[i] = new IndexMap(dexOut, dexes[i].getTableOfContents());
110 headerOut = dexOut.appendSection(writerSizes.header, "header");
111 idsDefsOut = dexOut.appendSection(writerSizes.idsDefs, "ids defs");
113 contentsOut = dexOut.getTableOfContents();
114 contentsOut.dataOff = dexOut.getNextSectionStart();
116 contentsOut.mapList.off = dexOut.getNextSectionStart();
118 mapListOut = dexOut.appendSection(writerSizes.mapList, "map list");
120 contentsOut.typeLists.off = dexOut.getNextSectionStart();
121 typeListOut = dexOut.appendSection(writerSizes.typeList, "type list");
123 contentsOut.annotationSetRefLists.off = dexOut.getNextSectionStart();
124 annotationSetRefListOut = dexOut.appendSection(
127 contentsOut.annotationSets.off = dexOut.getNextSectionStart();
128 annotationSetOut = dexOut.appendSection(writerSizes.annotationsSet, "annotation sets");
130 contentsOut.classDatas.off = dexOut.getNextSectionStart();
131 classDataOut = dexOut.appendSection(writerSizes.classData, "class data");
133 contentsOut.codes.off = dexOut.getNextSectionStart();
134 codeOut = dexOut.appendSection(writerSizes.code, "code");
136 contentsOut.stringDatas.off = dexOut.getNextSectionStart();
137 stringDataOut = dexOut.appendSection(writerSizes.stringData, "string data");
139 contentsOut.debugInfos.off = dexOut.getNextSectionStart();
140 debugInfoOut = dexOut.appendSection(writerSizes.debugInfo, "debug info");
142 contentsOut.annotations.off = dexOut.getNextSectionStart();
143 annotationOut = dexOut.appendSection(writerSizes.annotation, "annotation");
145 contentsOut.encodedArrays.off = dexOut.getNextSectionStart();
146 encodedArrayOut = dexOut.appendSection(writerSizes.encodedArray, "encoded array");
148 contentsOut.annotationsDirectories.off = dexOut.getNextSectionStart();
149 annotationsDirectoryOut = dexOut.appendSection(
152 contentsOut.dataSize = dexOut.getNextSectionStart() - contentsOut.dataOff;
178 contentsOut.fileSize = dexOut.getLength();
184 dexOut.writeHashes();
186 return dexOut;
208 new Dex[] {dexOut, new Dex(0)}, CollisionPolicy.FAIL, context, compactedSizes);
211 dexOut.getLength() / 1024f,
920 Dex.Section triesSection = dexOut.open(codeOut.getPosition());