Home
last modified time | relevance | path

Searched refs:dexProgramSources (Results 1 – 2 of 2) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/utils/
DAndroidApp.java279 List<Resource> dexProgramSources = getDexProgramResources(); in writeToDirectory() local
280 for (int i = 0; i < dexProgramSources.size(); i++) { in writeToDirectory()
281 Path filePath = directory.resolve(outputMode.getOutputPath(dexProgramSources.get(i), i)); in writeToDirectory()
285 Files.copy(dexProgramSources.get(i).getStream(closer), filePath, options); in writeToDirectory()
318 List<Resource> dexProgramSources = getDexProgramResources(); in writeToMemory() local
319 for (int i = 0; i < dexProgramSources.size(); i++) { in writeToMemory()
321 ByteStreams.copy(dexProgramSources.get(i).getStream(closer), out); in writeToMemory()
337 List<Resource> dexProgramSources = getDexProgramResources(); in writeToZip() local
338 for (int i = 0; i < dexProgramSources.size(); i++) { in writeToZip()
339 ZipEntry zipEntry = new ZipEntry(outputMode.getOutputPath(dexProgramSources.get(i), i)); in writeToZip()
[all …]
/external/r8/src/main/java/com/android/tools/r8/compatdx/
DCompatDx.java546 List<Resource> dexProgramSources = output.getDexResources(); in writeZipWithClasses() local
547 for (int i = 0; i < dexProgramSources.size(); i++) { in writeZipWithClasses()
548 addEntry(getDexFileName(i), dexProgramSources.get(i).getStream(closer), out); in writeZipWithClasses()