Home
last modified time | relevance | path

Searched refs:outputPath (Results 1 – 17 of 17) sorted by relevance

/external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
DInstallerActivity.java83 String outputPath = outputFile.getCanonicalPath(); in unzipLangPack() local
84 name = outputPath in unzipLangPack()
85 .substring(outputPath.lastIndexOf("/") + 1); in unzipLangPack()
86 outputPath = outputPath.substring(0, outputPath in unzipLangPack()
88 File outputDir = new File(outputPath); in unzipLangPack()
90 outputFile = new File(outputPath, name); in unzipLangPack()
/external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
DInstallerActivity.java83 String outputPath = outputFile.getCanonicalPath(); in unzipLangPack() local
84 name = outputPath in unzipLangPack()
85 .substring(outputPath.lastIndexOf("/") + 1); in unzipLangPack()
86 outputPath = outputPath.substring(0, outputPath in unzipLangPack()
88 File outputDir = new File(outputPath); in unzipLangPack()
90 outputFile = new File(outputPath, name); in unzipLangPack()
/external/svox/picolanginstaller/src/com/svox/langpack/installer/
DInstallerActivity.java84 String outputPath = outputFile.getCanonicalPath(); in unzipLangPack() local
85 name = outputPath in unzipLangPack()
86 .substring(outputPath.lastIndexOf("/") + 1); in unzipLangPack()
87 outputPath = outputPath.substring(0, outputPath in unzipLangPack()
89 File outputDir = new File(outputPath); in unzipLangPack()
91 outputFile = new File(outputPath, name); in unzipLangPack()
/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
DInstallerActivity.java83 String outputPath = outputFile.getCanonicalPath(); in unzipLangPack() local
84 name = outputPath in unzipLangPack()
85 .substring(outputPath.lastIndexOf("/") + 1); in unzipLangPack()
86 outputPath = outputPath.substring(0, outputPath in unzipLangPack()
88 File outputDir = new File(outputPath); in unzipLangPack()
90 outputFile = new File(outputPath, name); in unzipLangPack()
/external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
DInstallerActivity.java83 String outputPath = outputFile.getCanonicalPath(); in unzipLangPack() local
84 name = outputPath in unzipLangPack()
85 .substring(outputPath.lastIndexOf("/") + 1); in unzipLangPack()
86 outputPath = outputPath.substring(0, outputPath in unzipLangPack()
88 File outputDir = new File(outputPath); in unzipLangPack()
90 outputFile = new File(outputPath, name); in unzipLangPack()
/external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
DInstallerActivity.java83 String outputPath = outputFile.getCanonicalPath(); in unzipLangPack() local
84 name = outputPath in unzipLangPack()
85 .substring(outputPath.lastIndexOf("/") + 1); in unzipLangPack()
86 outputPath = outputPath.substring(0, outputPath in unzipLangPack()
88 File outputDir = new File(outputPath); in unzipLangPack()
90 outputFile = new File(outputPath, name); in unzipLangPack()
/external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
DInstallerActivity.java83 String outputPath = outputFile.getCanonicalPath(); in unzipLangPack() local
84 name = outputPath in unzipLangPack()
85 .substring(outputPath.lastIndexOf("/") + 1); in unzipLangPack()
86 outputPath = outputPath.substring(0, outputPath in unzipLangPack()
88 File outputDir = new File(outputPath); in unzipLangPack()
90 outputFile = new File(outputPath, name); in unzipLangPack()
/external/skia/tools/
Drender_pictures_main.cpp157 SkString* outputPath = NULL; in render_picture() local
159 outputPath = SkNEW(SkString); in render_picture()
160 make_output_filepath(outputPath, *outputDir, inputFilename); in render_picture()
163 success = renderer.render(outputPath, out); in render_picture()
164 if (outputPath) { in render_picture()
166 SkDebugf("Could not write to file %s\n", outputPath->c_str()); in render_picture()
168 SkDELETE(outputPath); in render_picture()
266 SkString outputPath; in render_picture() local
267 make_output_filepath(&outputPath, *outputDir, inputFilename); in render_picture()
268 outputPath.append(".png"); in render_picture()
[all …]
Drender_pdfs_main.cpp98 SkString outputPath; in write_output() local
99 if (!make_output_filepath(&outputPath, outputDir, inputFilename)) { in write_output()
103 SkFILEWStream stream(outputPath.c_str()); in write_output()
105 SkDebugf("Could not write to file %s\n", outputPath.c_str()); in write_output()
Dskdiff_html.cpp235 SkString outputPath(outputDir); in print_diff_page() local
236 outputPath.append("index.html"); in print_diff_page()
238 SkFILEWStream outputStream(outputPath.c_str()); in print_diff_page()
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt018llstar.py24 outputPath = os.path.splitext(__file__)[0] + '.output'
25 testOutput = open(outputPath).read()
Dt020fuzzy.py27 outputPath = os.path.splitext(__file__)[0] + '.output'
28 testOutput = open(outputPath).read()
Dt012lexerXML.py41 outputPath = os.path.splitext(__file__)[0] + '.output'
42 testOutput = unicode(open(outputPath).read(), 'utf-8')
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowMediaRecorder.java35 private String outputPath; field in ShadowMediaRecorder
106 outputPath = path; in setOutputFile()
210 return outputPath; in getOutputPath()
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
DSerializationTest.java88 private static final String outputPath = System.getProperty(GOLDEN_PATH, field in SerializationTest
161 if (outputPath != null && outputPath.length() != 0) { in getDataFile()
162 path = outputPath + File.separator + path; in getDataFile()
177 String goldenPath = outputPath + File.separatorChar in produceGoldenFiles()
/external/clang/include/clang/ARCMigrate/
DFileRemapper.h50 bool flushToFile(StringRef outputPath, DiagnosticsEngine &Diag);
/external/clang/lib/ARCMigrate/
DFileRemapper.cpp124 bool FileRemapper::flushToFile(StringRef outputPath, DiagnosticsEngine &Diag) { in flushToFile() argument
128 std::string infoFile = outputPath; in flushToFile()