HomeSort by relevance Sort by last modified time
    Searched refs:outputPath (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenProperties.groovy 159 String outputPath = relativeInputPath
160 outputPath = outputPath.replaceAll('_PROJECT_', targetSampleName())
161 outputPath = outputPath.replaceAll('_MODULE_', targetSampleModule())
162 outputPath = outputPath.replaceAll('_PACKAGE_', packageAsPath(targetSamplePackage))
166 outputPath = outputPath.replaceAll('_IDE_', "idea")
167 outputPath = outputPath.replaceAll(/\.ftl$/, ''
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/jsr45/
JSR45Tests.java 53 void compileWithD8(Path intputPath, Path outputPath) throws IOException, CompilationException {
58 .setOutputPath(outputPath)
62 void compileWithR8(Path inputPath, Path outputPath, Path keepRulesPath)
69 .setOutputPath(outputPath)
98 Path outputPath = tmpOutputDir.newFolder().toPath();
100 compileWithD8(INPUT_PATH, outputPath);
102 checkAnnotationContent(INPUT_PATH, outputPath);
111 Path outputPath = tmpOutputDir.newFolder().toPath();
112 compileWithR8(INPUT_PATH, outputPath, DONT_SHRINK_DONT_OBFUSCATE_CONFIG);
113 checkAnnotationContent(INPUT_PATH, outputPath);
    [all...]
  /system/tools/hidl/
AST.h 72 status_t generateCpp(const std::string &outputPath) const;
73 status_t generateCppHeaders(const std::string &outputPath) const;
74 status_t generateCppSources(const std::string &outputPath) const;
75 status_t generateCppImpl(const std::string &outputPath) const;
76 status_t generateStubImplHeader(const std::string& outputPath) const;
77 status_t generateStubImplSource(const std::string& outputPath) const;
80 const std::string &outputPath,
84 const std::string &outputPath,
93 status_t generateVts(const std::string &outputPath) const;
178 status_t generateInterfaceHeader(const std::string &outputPath) const
    [all...]
generateCppImpl.cpp 35 status_t AST::generateCppImpl(const std::string &outputPath) const {
36 status_t err = generateStubImplHeader(outputPath);
39 err = generateStubImplSource(outputPath);
82 status_t AST::generateStubImplHeader(const std::string &outputPath) const {
91 std::string path = outputPath;
169 status_t AST::generateStubImplSource(const std::string &outputPath) const {
178 std::string path = outputPath;
generateVts.cpp 56 status_t AST::generateVts(const std::string &outputPath) const {
60 std::string path = outputPath;
  /external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
InstallerActivity.java 83 String outputPath = outputFile.getCanonicalPath();
84 name = outputPath
85 .substring(outputPath.lastIndexOf("/") + 1);
86 outputPath = outputPath.substring(0, outputPath
88 File outputDir = new File(outputPath);
90 outputFile = new File(outputPath, name);
  /external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
InstallerActivity.java 83 String outputPath = outputFile.getCanonicalPath();
84 name = outputPath
85 .substring(outputPath.lastIndexOf("/") + 1);
86 outputPath = outputPath.substring(0, outputPath
88 File outputDir = new File(outputPath);
90 outputFile = new File(outputPath, name);
  /external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
InstallerActivity.java 83 String outputPath = outputFile.getCanonicalPath();
84 name = outputPath
85 .substring(outputPath.lastIndexOf("/") + 1);
86 outputPath = outputPath.substring(0, outputPath
88 File outputDir = new File(outputPath);
90 outputFile = new File(outputPath, name);
  /external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java 83 String outputPath = outputFile.getCanonicalPath();
84 name = outputPath
85 .substring(outputPath.lastIndexOf("/") + 1);
86 outputPath = outputPath.substring(0, outputPath
88 File outputDir = new File(outputPath);
90 outputFile = new File(outputPath, name);
  /external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java 83 String outputPath = outputFile.getCanonicalPath();
84 name = outputPath
85 .substring(outputPath.lastIndexOf("/") + 1);
86 outputPath = outputPath.substring(0, outputPath
88 File outputDir = new File(outputPath);
90 outputFile = new File(outputPath, name);
  /external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java 83 String outputPath = outputFile.getCanonicalPath();
84 name = outputPath
85 .substring(outputPath.lastIndexOf("/") + 1);
86 outputPath = outputPath.substring(0, outputPath
88 File outputDir = new File(outputPath);
90 outputFile = new File(outputPath, name);
  /external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java 84 String outputPath = outputFile.getCanonicalPath();
85 name = outputPath
86 .substring(outputPath.lastIndexOf("/") + 1);
87 outputPath = outputPath.substring(0, outputPath
89 File outputDir = new File(outputPath);
91 outputFile = new File(outputPath, name);
  /developers/build/
build.gradle 103 def outputPath = outPath("ant");
105 into outputPath
121 def outputPath = outPath("gradle")
125 into outputPath
191 def outputPath = "."
195 outputPath = "${moduleName}"
197 println "\n---------------- processing MODULE ${moduleName} to outputPath ${outputPath}"
211 into("${outputPath}/src") {
219 fcd.path = "${outputPath}/src/${collapsed}"
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/
BaseCommand.java 21 private final Path outputPath;
31 this.outputPath = null;
39 Path outputPath,
47 this.outputPath = outputPath;
73 return outputPath;
93 private Path outputPath = null;
196 return outputPath;
205 public B setOutputPath(Path outputPath) {
206 this.outputPath = outputPath
    [all...]
D8Command.java 137 Path outputPath = null;
163 if (outputPath != null) {
165 "Cannot output both to '" + outputPath.toString() + "' and '" + output + "'");
167 outputPath = Paths.get(output);
181 return builder.setOutputPath(outputPath);
186 Path outputPath,
190 super(inputApp, outputPath, outputMode, mode, minApiLevel);
  /external/r8/src/test/java/com/android/tools/r8/rewrite/longcompare/
LongCompare.java 35 void compileWithD8(Path intputPath, Path outputPath)
37 D8.run(D8Command.builder().addProgramFiles(intputPath).setOutputPath(outputPath).build());
56 Path outputPath = tmpOutputDir.newFolder().toPath();
58 compileWithD8(inputPath, outputPath);
60 Path dexPath = outputPath.resolve("classes.dex");
RequireNonNullRewriteTest.java 35 void compileWithD8(Path intputPath, Path outputPath, CompilationMode mode)
41 .setOutputPath(outputPath)
75 Path outputPath = tmpOutputDir.newFolder().toPath();
77 compileWithD8(inputPath, outputPath, mode);
79 Path dexPath = outputPath.resolve("classes.dex");
  /system/tools/hidl/c2hal/
main.cpp 75 std::string &outputPath) {
93 if (outputPath.empty()) {
94 outputPath = rootPath;
97 outputPath += '/' + packagePath + '/';
102 CHECK(!outputPath.empty()) << "No package root path provided for: " << package;
104 outputPath += '/';
  /external/antlr/antlr-3.4/runtime/Python/tests/
t018llstar.py 24 outputPath = os.path.splitext(__file__)[0] + '.output'
25 testOutput = open(outputPath).read()
t020fuzzy.py 27 outputPath = os.path.splitext(__file__)[0] + '.output'
28 testOutput = open(outputPath).read()
  /external/r8/src/test/java/com/android/tools/r8/
R8RunSmaliTestsTest.java 106 String outputPath = temp.getRoot().getCanonicalPath();
107 ToolHelper.runR8(originalDexFile.getCanonicalPath(), outputPath);
114 String generated = outputPath + "/classes.dex";
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
MediaMemoryTest.java 142 for(String outputPath : mOutputPaths){
143 mTestDevice.executeShellCommand(String.format("rm %s/%s", extStore, outputPath));
190 for(String outputPath : mOutputPaths){
192 outputFile = mTestDevice.pullFileFromExternal(outputPath);
202 listener.testLog(outputPath, LogDataType.TEXT, outputSource);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 35 private String outputPath;
106 outputPath = path;
210 return outputPath;
  /frameworks/native/cmds/installd/binder/android/os/
IInstalld.aidl 51 @nullable @utf8InCpp String outputPath, int dexFlags,
77 @utf8InCpp String outputPath);
79 @nullable @utf8InCpp String outputPath);
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 50 bool flushToFile(StringRef outputPath, DiagnosticsEngine &Diag);

Completed in 439 milliseconds

1 2 3 4 5 6