Lines Matching refs:dexOut

51     private final Dex dexOut;
103 dexOut = new Dex(writerSizes.size());
107 indexMaps[i] = new IndexMap(dexOut, dexes[i].getTableOfContents());
111 headerOut = dexOut.appendSection(writerSizes.header, "header");
112 idsDefsOut = dexOut.appendSection(writerSizes.idsDefs, "ids defs");
114 contentsOut = dexOut.getTableOfContents();
115 contentsOut.dataOff = dexOut.getNextSectionStart();
117 contentsOut.mapList.off = dexOut.getNextSectionStart();
119 mapListOut = dexOut.appendSection(writerSizes.mapList, "map list");
121 contentsOut.typeLists.off = dexOut.getNextSectionStart();
122 typeListOut = dexOut.appendSection(writerSizes.typeList, "type list");
124 contentsOut.annotationSetRefLists.off = dexOut.getNextSectionStart();
125 annotationSetRefListOut = dexOut.appendSection(
128 contentsOut.annotationSets.off = dexOut.getNextSectionStart();
129 annotationSetOut = dexOut.appendSection(writerSizes.annotationsSet, "annotation sets");
131 contentsOut.classDatas.off = dexOut.getNextSectionStart();
132 classDataOut = dexOut.appendSection(writerSizes.classData, "class data");
134 contentsOut.codes.off = dexOut.getNextSectionStart();
135 codeOut = dexOut.appendSection(writerSizes.code, "code");
137 contentsOut.stringDatas.off = dexOut.getNextSectionStart();
138 stringDataOut = dexOut.appendSection(writerSizes.stringData, "string data");
140 contentsOut.debugInfos.off = dexOut.getNextSectionStart();
141 debugInfoOut = dexOut.appendSection(writerSizes.debugInfo, "debug info");
143 contentsOut.annotations.off = dexOut.getNextSectionStart();
144 annotationOut = dexOut.appendSection(writerSizes.annotation, "annotation");
146 contentsOut.encodedArrays.off = dexOut.getNextSectionStart();
147 encodedArrayOut = dexOut.appendSection(writerSizes.encodedArray, "encoded array");
149 contentsOut.annotationsDirectories.off = dexOut.getNextSectionStart();
150 annotationsDirectoryOut = dexOut.appendSection(
153 contentsOut.dataSize = dexOut.getNextSectionStart() - contentsOut.dataOff;
179 contentsOut.fileSize = dexOut.getLength();
185 dexOut.writeHashes();
187 return dexOut;
209 new Dex[] {dexOut, new Dex(0)}, CollisionPolicy.FAIL, context, compactedSizes);
212 dexOut.getLength() / 1024f,
921 Dex.Section triesSection = dexOut.open(codeOut.getPosition());