Home
last modified time | relevance | path

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

/external/libxcam/plugins/smart/dvs/libdvs/
Dtest-image-stabilization.cpp49 char outputPath[XCAM_MAX_STR_SIZE] = {0}; in main() local
73 strncpy (outputPath, optarg, XCAM_MAX_STR_SIZE); in main()
105 printf ("output file:\t%s\n", outputPath); in main()
142 dvs->writer_.open(outputPath, VideoWriter::fourcc('X', '2', '6', '4'), in main()
/external/v8/tools/perf/
Dstatistics-for-json.R34 outputPath <- args[3] globalVar
66 ggsave(filename=sprintf("%s/%s.svg", outputPath, testName),
74 ggsave(filename=sprintf("%s/%s-before.svg", outputPath, testName),
111 ggsave(filename=sprintf("%s/speedup-estimates.svg", outputPath),
/external/antlr/runtime/Python3/tests/
Dt020fuzzy.py27 outputPath = os.path.splitext(__file__)[0] + '.output'
28 with open(outputPath) as f:
Dt018llstar.py24 outputPath = os.path.splitext(__file__)[0] + '.output'
25 with open(outputPath) as f:
Dt012lexerXML.py42 outputPath = os.path.splitext(__file__)[0] + '.output'
44 with open(outputPath) as f:
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMediaRecorder.java37 private String outputPath; field in ShadowMediaRecorder
109 outputPath = path; in setOutputFile()
213 return outputPath; in getOutputPath()
/external/antlr/runtime/Python/tests/
Dt020fuzzy.py27 outputPath = os.path.splitext(__file__)[0] + '.output'
28 testOutput = open(outputPath).read()
Dt018llstar.py24 outputPath = os.path.splitext(__file__)[0] + '.output'
25 testOutput = open(outputPath).read()
Dt012lexerXML.py41 outputPath = os.path.splitext(__file__)[0] + '.output'
42 testOutput = unicode(open(outputPath).read(), 'utf-8')
/external/catch2/scripts/
DgenerateSingleHeader.py27 outputPath = os.path.join( catchPath, 'single_include/catch2/catch.hpp' )
46 outDir = os.path.dirname(outputPath)
49 out = io.open( outputPath, 'w', newline='\n', encoding='utf-8')
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
DSerializationTest.java87 private static final String outputPath = System.getProperty(GOLDEN_PATH, field in SerializationTest
160 if (outputPath != null && outputPath.length() != 0) { in getDataFile()
161 path = outputPath + File.separator + path; in getDataFile()
176 String goldenPath = outputPath + File.separatorChar in produceGoldenFiles()
/external/deqp/executor/tools/
DxeBatchResultToXml.cpp84 std::string outputPath; member
105 cmdLine.outputPath = opts.getArgs()[1]; in parseCommandLine()
389 batchResultToSingleXmlFile(cmdLine.batchResultFile.c_str(), cmdLine.outputPath.c_str()); in main()
391 batchResultToSeparateXmlFiles(cmdLine.batchResultFile.c_str(), cmdLine.outputPath.c_str()); in main()
/external/skia/tools/skdiff/
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/skqp/tools/skdiff/
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/doclava/src/com/google/doclava/apicheck/
DApiCheck.java292 static int newApi(String origApiPath, String newApiPath, String outputPath, boolean strip) { in newApi() argument
312 apiWriter = new PrintStream(outputPath); in newApi()
314 System.err.println("can't open file: " + outputPath); in newApi()
/external/javapoet/src/main/java/com/squareup/javapoet/
DJavaFile.java96 Path outputPath = outputDirectory.resolve(typeSpec.name + ".java"); in writeTo() local
97 try (Writer writer = new OutputStreamWriter(Files.newOutputStream(outputPath), UTF_8)) { in writeTo()
/external/clang/include/clang/ARCMigrate/
DFileRemapper.h50 bool flushToFile(StringRef outputPath, DiagnosticsEngine &Diag);
/external/clang/lib/ARCMigrate/
DFileRemapper.cpp120 bool FileRemapper::flushToFile(StringRef outputPath, DiagnosticsEngine &Diag) { in flushToFile() argument
124 std::string infoFile = outputPath; in flushToFile()
/external/desugar/java/com/google/devtools/build/android/desugar/
DDesugar.java389 Path outputPath = inputOutputPair.getOutput(); in desugarOneInput() local
391 Files.isDirectory(inputPath) || !Files.isDirectory(outputPath), in desugarOneInput()
394 try (OutputFileProvider outputFileProvider = OutputFileProvider.create(outputPath); in desugarOneInput()