Searched refs:dexProgramSources (Results 1 – 2 of 2) sorted by relevance
279 List<Resource> dexProgramSources = getDexProgramResources(); in writeToDirectory() local280 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() local319 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() local338 for (int i = 0; i < dexProgramSources.size(); i++) { in writeToZip()339 ZipEntry zipEntry = new ZipEntry(outputMode.getOutputPath(dexProgramSources.get(i), i)); in writeToZip()[all …]
546 List<Resource> dexProgramSources = output.getDexResources(); in writeZipWithClasses() local547 for (int i = 0; i < dexProgramSources.size(); i++) { in writeZipWithClasses()548 addEntry(getDexFileName(i), dexProgramSources.get(i).getStream(closer), out); in writeZipWithClasses()