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

1 2 3 4

  /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/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...]
  /frameworks/base/tools/aapt2/compile/
Compile.cpp 108 std::string outputPath;
186 const std::string& outputPath) {
236 if (!writer->startEntry(outputPath, 0)) {
237 context->getDiagnostics()->error(DiagMessage(outputPath) << "failed to open");
248 context->getDiagnostics()->error(DiagMessage(outputPath) << "failed to write");
254 context->getDiagnostics()->error(DiagMessage(outputPath) << "failed to finish entry");
260 static bool writeHeaderAndBufferToWriter(const StringPiece& outputPath, const ResourceFile& file,
264 if (!writer->startEntry(outputPath, 0)) {
265 diag->error(DiagMessage(outputPath) << "failed to open file");
281 diag->error(DiagMessage(outputPath) << "failed to write data")
    [all...]
  /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()
t012lexerXML.py 41 outputPath = os.path.splitext(__file__)[0] + '.output'
42 testOutput = unicode(open(outputPath).read(), 'utf-8')
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 35 private String outputPath;
106 outputPath = path;
210 return outputPath;
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 50 bool flushToFile(StringRef outputPath, DiagnosticsEngine &Diag);
  /frameworks/base/services/core/java/com/android/server/pm/
Installer.java 144 int dexoptNeeded, @Nullable String outputPath, int dexFlags,
149 outputPath, dexFlags, compilerFilter, volumeUuid, sharedLibraries);
221 public void moveAb(String apkPath, String instructionSet, String outputPath)
223 mInstaller.execute("move_ab", apkPath, instructionSet, outputPath);
  /libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 69 private static final String outputPath = System.getProperty(GOLDEN_PATH,
115 if (outputPath != null && outputPath.length() != 0) {
116 path = outputPath + File.separator + path;
131 String goldenPath = outputPath + File.separatorChar
  /external/opencv3/modules/features2d/misc/java/test/
Features2dTest.java 141 String outputPath = OpenCVTestRunner.getOutputFileName("PTODresult.png");
142 Imgcodecs.imwrite(outputPath, outimg);
143 // OpenCVTestRunner.Log("Output image is saved to: " + outputPath);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 49 String outputPath = null;
82 outputPath = getArg(args, ++i, "Missing value for output file");
132 jarPath, testType, outputPath, additionalAttributes);
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 87 private static final String outputPath = System.getProperty(GOLDEN_PATH,
160 if (outputPath != null && outputPath.length() != 0) {
161 path = outputPath + File.separator + path;
176 String goldenPath = outputPath + File.separatorChar
  /frameworks/wilhelm/tests/examples/
slesTestDecodeToBuffQueue.cpp 265 char* outputPath = (char*) malloc(len + 4 + 1); // save room to concatenate ".raw"
266 if (NULL == outputPath) {
269 memcpy(outputPath, path, len + 1);
270 strcat(outputPath, ".raw");
271 gFp = fopen(outputPath, "w");
  /external/opencv3/modules/videoio/src/
cap_ios_video_camera.mm 602 NSString *outputPath = [[NSString alloc] initWithFormat:@"%@%@", NSTemporaryDirectory(), @"output.mov"];
603 NSURL *outputURL = [NSURL fileURLWithPath:outputPath];
605 if ([fileManager fileExistsAtPath:outputPath]) {
615 NSString *outputPath = [[NSString alloc] initWithFormat:@"%@%@", NSTemporaryDirectory(), @"output.mov"];
616 return outputPath;
  /external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java 295 * @param outputPath output XML path for the generated diff
298 static int newApi(String origApiPath, String newApiPath, String outputPath) {
318 apiWriter = new PrintStream(outputPath);
320 System.err.println("can't open file: " + outputPath);
  /external/skia/tools/
skdiff_html.cpp 235 SkString outputPath(outputDir);
236 outputPath.append("index.html");
238 SkFILEWStream outputStream(outputPath.c_str());
  /external/deqp/executor/tools/
xeBatchResultToXml.cpp 84 std::string outputPath;
105 cmdLine.outputPath = opts.getArgs()[1];
389 batchResultToSingleXmlFile(cmdLine.batchResultFile.c_str(), cmdLine.outputPath.c_str());
391 batchResultToSeparateXmlFiles(cmdLine.batchResultFile.c_str(), cmdLine.outputPath.c_str());

Completed in 1111 milliseconds

1 2 3 4