HomeSort by relevance Sort by last modified time
    Searched refs:dstFile (Results 1 - 18 of 18) sorted by null

  /external/deqp/scripts/
cppcheck.py 135 def runCppCheck (srcBaseDir, dstFile):
136 fullDstFile = os.path.realpath(dstFile)
158 dstFile = sys.argv[1]
160 runCppCheck(srcDir, dstFile)
make_release.py 98 class DstFile (object):
99 def __init__ (self, dstFile):
100 self.dstFile = dstFile
103 dirName = os.path.dirname(self.dstFile)
110 class CopyFile (DstFile):
111 def __init__ (self, srcFile, dstFile):
112 super(CopyFile, self).__init__(dstFile)
117 if os.path.exists(self.dstFile):
118 die("%s already exists" % self.dstFile)
    [all...]
mustpass.py 360 dstFile = getDstCaseListPath(mustpass, package, config)
362 print " Writing deqp caselist: " + dstFile
363 writeFile(dstFile, "\n".join(filtered) + "\n")
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
AnalyseNewJavaParserTest.java 79 File dstFile = new File(path);
86 dstFile = dstFile9;
97 if (!dstFile.exists()) {
99 PrintWriter writer = new PrintWriter(dstFile.getAbsoluteFile(), "UTF-8");
104 String expected = readFile(dstFile);
AnalyseJavaSymbolSolver060Test.java 100 File dstFile = new File(path);
107 dstFile = dstFile9;
118 if (!dstFile.exists()) {
120 // PrintWriter writer = new PrintWriter(dstFile.getAbsoluteFile(), "UTF-8");
125 String expected = readFile(dstFile);
AnalyseJavaParserTest.java 74 File dstFile = adaptPath(new File(path));
83 String expected = readFile(dstFile);
97 //PrintWriter writer = new PrintWriter(dstFile.getAbsoluteFile(), "UTF-8");
  /external/lz4/programs/
lz4io.c 534 FILE* dstFile;
546 dstFile = LZ4IO_openDstFile(dstFileName);
547 if (dstFile == NULL) { fclose(srcFile); return 1; }
581 { size_t const sizeCheck = fwrite(dstBuffer, 1, cSize, dstFile);
592 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile);
607 { size_t const sizeCheck = fwrite(dstBuffer, 1, outSize, dstFile);
620 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile);
627 fclose (dstFile);
856 FILE* dstFile;
891 ress.dstFile = NULL
    [all...]
  /build/make/tools/libhost/
CopyFile.c 494 char* dstFile;
516 dstFile = malloc(dstLen +1 + nameLen +1);
517 memcpy(dstFile, dst, dstLen);
518 dstFile[dstLen] = FSSEP;
519 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
521 if (copyFileRecursive(srcFile, dstFile, false, options) != 0)
525 free(dstFile);
  /external/deqp/framework/qphelper/
gen_release_info.py 134 dstFile = args.out if args.out != None else defaultDstFile
136 writeFile(dstFile, releaseInfo)
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
NativeLibrary.java 186 private static long copy(InputStream src, File dstFile) throws IOException {
187 FileOutputStream dst = new FileOutputStream(dstFile);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/test/
amrnb_enc_test.cpp 61 int encode(int mode, const char *srcFile, const char *dstFile) {
83 fDst = fopen(dstFile, "wb");
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
SwatDeprecated.java 27 private File dstFile;
99 this.dstFile = new File(dst);
113 this.dstPrefix = dstFile.getCanonicalPath();
Deprecator.java 171 void processFile(File srcFile, File dstFile) {
  /external/cldr/tools/java/org/unicode/cldr/ant/
CLDRBuild.java 98 for (File dstFile : destFiles) {
99 String destName = stripExtension(dstFile.getName());
102 if (srcName.equals(destName) && dstFile.lastModified() > srcFile.lastModified()) {
  /external/deqp/external/openglcts/scripts/
mustpass.py 402 dstFile = getDstCaseListPath(mustpass, package, config)
404 print " Writing deqp caselist: " + dstFile
405 writeFile(dstFile, "\n".join(filtered) + "\n")
  /external/boringssl/src/util/
run_android_tests.go 172 dstFile, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, srcInfo.Mode())
176 defer dstFile.Close()
178 _, err = io.Copy(dstFile, srcFile)
  /cts/tests/tests/media/src/android/media/cts/
VpxCodecTestBase.java 477 FileOutputStream dstFile = new FileOutputStream(dstYuvFilename, false);
493 dstFile.write(dstFrame);
496 dstFile.close();
    [all...]
  /external/kotlinc/lib/
kotlin-stdlib.jar 

Completed in 816 milliseconds