Lines Matching refs:annotationsDirectoryOut
69 private final Dex.Section annotationsDirectoryOut; field in DexMerger
145 annotationsDirectoryOut = dexOut.appendSection( in DexMerger()
693 annotationsDirectoryOut.assertFourByteAligned(); in transformAnnotationDirectory()
695 directoryIn.getPosition(), annotationsDirectoryOut.getPosition()); in transformAnnotationDirectory()
698 annotationsDirectoryOut.writeInt(classAnnotationsOffset); in transformAnnotationDirectory()
701 annotationsDirectoryOut.writeInt(fieldsSize); in transformAnnotationDirectory()
704 annotationsDirectoryOut.writeInt(methodsSize); in transformAnnotationDirectory()
707 annotationsDirectoryOut.writeInt(parameterListSize); in transformAnnotationDirectory()
711 annotationsDirectoryOut.writeInt(indexMap.adjustField(directoryIn.readInt())); in transformAnnotationDirectory()
714 annotationsDirectoryOut.writeInt(indexMap.adjustAnnotationSet(directoryIn.readInt())); in transformAnnotationDirectory()
719 annotationsDirectoryOut.writeInt(indexMap.adjustMethod(directoryIn.readInt())); in transformAnnotationDirectory()
722 annotationsDirectoryOut.writeInt( in transformAnnotationDirectory()
728 annotationsDirectoryOut.writeInt(indexMap.adjustMethod(directoryIn.readInt())); in transformAnnotationDirectory()
731 annotationsDirectoryOut.writeInt( in transformAnnotationDirectory()
1036 annotationsDirectory = dexMerger.annotationsDirectoryOut.used(); in WriterSizes()