/external/r8/src/test/java/com/android/tools/r8/utils/ |
D | OutputModeTest.java | 15 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()
|
D | D8CommandTest.java | 57 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()
|
D | R8CommandTest.java | 58 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/ |
D | OutputMode.java | 13 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
|
D | AndroidApp.java | 281 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/ |
D | D8.java | 67 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()
|
D | BaseCommand.java | 72 public Path getOutputPath() { in getOutputPath() method in BaseCommand 195 public Path getOutputPath() { in getOutputPath() method in BaseCommand.Builder
|
D | R8Command.java | 173 getOutputPath(), in build() 257 if (builder.getOutputPath() != null) { in parse() 260 + builder.getOutputPath().toString() in parse()
|
D | R8.java | 149 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()
|
D | Disassemble.java | 52 getOutputPath(), in build()
|
D | DexSegments.java | 44 getAppBuilder().build(), getOutputPath(), getOutputMode(), getMode(), getMinApiLevel()); in build()
|
D | D8Command.java | 107 getAppBuilder().build(), getOutputPath(), getOutputMode(), getMode(), getMinApiLevel()); in build()
|
/external/llvm/lib/LibDriver/ |
D | LibDriver.cpp | 59 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/ |
D | SourceCoverageView.cpp | 31 std::string CoveragePrinter::getOutputPath(StringRef Path, StringRef Extension, in getOutputPath() function in CoveragePrinter 59 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false); in createOutputStream()
|
D | SourceCoverageViewText.cpp | 38 OSRef << getOutputPath(SF, "txt", /*InToplevel=*/false) << '\n'; in createIndexFile()
|
D | SourceCoverageView.h | 117 std::string getOutputPath(StringRef Path, StringRef Extension,
|
D | SourceCoverageViewHTML.cpp | 248 escape(getOutputPath(SF, "html", /*InToplevel=*/false)); in createIndexFile()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | MediaRecorderTest.java | 111 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/ |
D | ShadowMediaRecorder.java | 209 public String getOutputPath() { in getOutputPath() method in ShadowMediaRecorder
|
/external/r8/src/test/java/com/android/tools/r8/ |
D | ToolHelper.java | 510 if (command.getOutputPath() != null) { in runD8() 511 result.write(command.getOutputPath(), command.getOutputMode()); in runD8()
|