Home
last modified time | relevance | path

Searched refs:getOutputPath (Results 1 – 20 of 20) sorted by relevance

/external/r8/src/test/java/com/android/tools/r8/utils/
DOutputModeTest.java15 assertEquals("classes.dex", OutputMode.Indexed.getOutputPath(null, 0)); in testIndexedFileName()
16 assertEquals("classes2.dex", OutputMode.Indexed.getOutputPath(null, 1)); in testIndexedFileName()
23 assertEquals("Test.dex", OutputMode.FilePerClass.getOutputPath(test, 0)); in testFilePerClass()
27 assertEquals("com/Test.dex", OutputMode.FilePerClass.getOutputPath(comTest, 0)); in testFilePerClass()
31 assertEquals("com/example/Test.dex", OutputMode.FilePerClass.getOutputPath(comExampleTest, 0)); in testFilePerClass()
32 assertEquals("com/example/Test.dex", OutputMode.FilePerClass.getOutputPath(comExampleTest, 1)); in testFilePerClass()
DD8CommandTest.java57 assertNull(command.getOutputPath()); in verifyEmptyCommand()
77 D8Command.builder().setOutputPath(existingDir).build().getOutputPath()); in validOutputPath()
80 D8Command.builder().setOutputPath(nonExistingZip).build().getOutputPath()); in validOutputPath()
83 parse("--output", existingDir.toString()).getOutputPath()); in validOutputPath()
86 parse("--output", nonExistingZip.toString()).getOutputPath()); in validOutputPath()
DR8CommandTest.java58 assertNull(command.getOutputPath()); in verifyEmptyCommand()
81 R8Command.builder().setOutputPath(existingDir).build().getOutputPath()); in validOutputPath()
84 R8Command.builder().setOutputPath(nonExistingZip).build().getOutputPath()); in validOutputPath()
87 parse("--output", existingDir.toString()).getOutputPath()); in validOutputPath()
90 parse("--output", nonExistingZip.toString()).getOutputPath()); in validOutputPath()
/external/r8/src/main/java/com/android/tools/r8/utils/
DOutputMode.java13 String getOutputPath(Resource resource, int index) { in getOutputPath() method
19 String getOutputPath(Resource resource, int index) { in getOutputPath() method
29 abstract String getOutputPath(Resource resource, int index); in getOutputPath() method in OutputMode
DAndroidApp.java281 Path filePath = directory.resolve(outputMode.getOutputPath(dexProgramSources.get(i), i)); in writeToDirectory()
339 ZipEntry zipEntry = new ZipEntry(outputMode.getOutputPath(dexProgramSources.get(i), i)); in writeToZip()
/external/r8/src/main/java/com/android/tools/r8/
DD8.java67 if (command.getOutputPath() != null) { in run()
68 output.write(command.getOutputPath()); in run()
89 if (command.getOutputPath() != null) { in run()
90 output.write(command.getOutputPath()); in run()
97 if (builder.getOutputPath() == null) { in run()
DBaseCommand.java72 public Path getOutputPath() { in getOutputPath() method in BaseCommand
195 public Path getOutputPath() { in getOutputPath() method in BaseCommand.Builder
DR8Command.java173 getOutputPath(), in build()
257 if (builder.getOutputPath() != null) { in parse()
260 + builder.getOutputPath().toString() in parse()
DR8.java149 Path output = command.getOutputPath(); in disassemble()
387 if (command.getOutputPath() != null) { in writeOutputs()
388 outputApp.write(command.getOutputPath(), options.outputMode); in writeOutputs()
454 if (builder.getOutputPath() == null) { in run()
DDisassemble.java52 getOutputPath(), in build()
DDexSegments.java44 getAppBuilder().build(), getOutputPath(), getOutputMode(), getMode(), getMinApiLevel()); in build()
DD8Command.java107 getAppBuilder().build(), getOutputPath(), getOutputMode(), getMode(), getMinApiLevel()); in build()
/external/llvm/lib/LibDriver/
DLibDriver.cpp59 static std::string getOutputPath(llvm::opt::InputArgList *Args, in getOutputPath() function
150 llvm::writeArchive(getOutputPath(&Args, Members[0]), Members, in libDriverMain()
/external/llvm/tools/llvm-cov/
DSourceCoverageView.cpp31 std::string CoveragePrinter::getOutputPath(StringRef Path, StringRef Extension, in getOutputPath() function in CoveragePrinter
59 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false); in createOutputStream()
DSourceCoverageViewText.cpp38 OSRef << getOutputPath(SF, "txt", /*InToplevel=*/false) << '\n'; in createIndexFile()
DSourceCoverageView.h117 std::string getOutputPath(StringRef Path, StringRef Extension,
DSourceCoverageViewHTML.cpp248 escape(getOutputPath(SF, "html", /*InToplevel=*/false)); in createIndexFile()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DMediaRecorderTest.java111 assertThat(shadowMediaRecorder.getOutputPath(), nullValue()); in testOutputFile()
113 assertThat(shadowMediaRecorder.getOutputPath(), equalTo("/dev/null")); in testOutputFile()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowMediaRecorder.java209 public String getOutputPath() { in getOutputPath() method in ShadowMediaRecorder
/external/r8/src/test/java/com/android/tools/r8/
DToolHelper.java510 if (command.getOutputPath() != null) { in runD8()
511 result.write(command.getOutputPath(), command.getOutputMode()); in runD8()