Home
last modified time | relevance | path

Searched refs:dstPath (Results 1 – 25 of 31) sorted by relevance

12

/external/deqp/external/vulkancts/scripts/
Dbuild_spirv_binaries.py55 def cleanDstDir (dstPath): argument
56 …binFiles = [f for f in os.listdir(dstPath) if os.path.isfile(os.path.join(dstPath, f)) and fnmatch…
59 print("Removing %s" % os.path.join(dstPath, binFile))
60 os.remove(os.path.join(dstPath, binFile))
62 def execBuildPrograms (buildCfg, generator, module, dstPath, vulkanVersion): argument
63 fullDstPath = os.path.realpath(dstPath)
114 if not os.path.exists(args.dstPath):
115 os.makedirs(args.dstPath)
117 execBuildPrograms(buildCfg, generator, module, args.dstPath, args.vulkanVersion)
/external/deqp/scripts/android/
Dbuild_apk.py595 self.dstPath = [BuildRoot(), self.package.getAppDirName(), "tmp", "base.apk"]
608 return [self.dstPath]
612 dstPath = resolvePath(config, self.dstPath)
614 if not os.path.exists(os.path.dirname(dstPath)):
615 os.makedirs(os.path.dirname(dstPath))
625 "-F", dstPath,
665 self.dstPath = [BuildRoot(), self.package.getAppDirName(), "tmp", "with-java.apk"]
674 return [self.dstPath]
678 dstPath = resolvePath(config, self.getOutputs()[0])
681 shutil.copyfile(srcPath, dstPath)
[all …]
/external/deqp/external/
Dfetch_sources.py132 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
137 if not os.path.exists(os.path.dirname(dstPath)):
138 os.mkdir(os.path.dirname(dstPath))
140 writeBinaryFile(dstPath, data)
147 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
164 if not os.path.exists(dstPath):
165 os.mkdir(dstPath)
168 if os.path.exists(os.path.join(dstPath, entry)):
171 shutil.move(os.path.join(topLevelPath, entry), dstPath)
176 self.postExtract(dstPath)
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp109 void writeBinary (const ProgramBinary& binary, const std::string& dstPath) in writeBinary() argument
111 const de::FilePath filePath(dstPath); in writeBinary()
117 std::ofstream out (dstPath.c_str(), std::ios_base::binary); in writeBinary()
120 throw tcu::Exception("Failed to open " + dstPath); in writeBinary()
417 BinaryRegistryWriter::BinaryRegistryWriter (const std::string& dstPath) in BinaryRegistryWriter() argument
418 : m_dstPath(dstPath) in BinaryRegistryWriter()
420 if (de::FilePath(dstPath).exists()) in BinaryRegistryWriter()
421 initFromPath(dstPath); in BinaryRegistryWriter()
515 void BinaryRegistryWriter::writeToPath (const std::string& dstPath) const in writeToPath()
517 if (!de::FilePath(dstPath).exists()) in writeToPath()
[all …]
DvkBinaryRegistry.hpp224 BinaryRegistryWriter (const std::string& dstPath);
232 void writeToPath (const std::string& dstPath) const;
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecator.java32 String dstPath = null; in main() local
44 dstPath = args[++i]; in main()
73 if (dstPath == null) { in main()
76 dstDir = new File(dstPath); in main()
79 err.append("\nunable to create dst: '" + dstPath + "'"); in main()
82 err.append("\ndst exists but is not directory: '" + dstPath + "'"); in main()
/external/deqp/executor/tools/
DxeBatchResultToXml.cpp232 ResultToXmlFilesLogHandler (vector<xe::TestCaseResultHeader>& resultHeaders, const char* dstPath) in ResultToXmlFilesLogHandler() argument
234 , m_dstPath (dstPath) in ResultToXmlFilesLogHandler()
334 static void batchResultToSeparateXmlFiles (const char* batchResultFilename, const char* dstPath) in batchResultToSeparateXmlFiles() argument
341 if (!de::FilePath(dstPath).exists()) in batchResultToSeparateXmlFiles()
342 de::createDirectoryAndParents(dstPath); in batchResultToSeparateXmlFiles()
344 …XE_CHECK_MSG(de::FilePath(dstPath).getType() == de::FilePath::TYPE_DIRECTORY, "Destination is not … in batchResultToSeparateXmlFiles()
348 ResultToXmlFilesLogHandler handler (shortResults, dstPath); in batchResultToSeparateXmlFiles()
367 de::FilePath indexPath = de::FilePath::join(dstPath, "caselist.xml"); in batchResultToSeparateXmlFiles()
DxeExtractShaderPrograms.cpp50 string dstPath; member
77 …const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de… in writeShaderProgram()
221 else if (cmdLine.dstPath.empty()) in parseCommandLine()
222 cmdLine.dstPath = arg; in parseCommandLine()
/external/skia/src/utils/
DSkDashPath.cpp159 const SkRect* cullRect, SkScalar intervalLength, SkPath* dstPath) { in cull_path() argument
164 dstPath->moveTo(pts[0]); in cull_path()
165 dstPath->lineTo(pts[1]); in cull_path()
179 dstPath->moveTo(pts[0]); in cull_path()
180 dstPath->lineTo(pts[1]); in cull_path()
204 if (!dstPath->getLastPt(&last) || last != pts[0]) { in cull_path()
205 dstPath->moveTo(pts[0]); in cull_path()
207 dstPath->lineTo(pts[1]); in cull_path()
214 return !dstPath->isEmpty(); in cull_path()
/external/deqp/scripts/khr_util/
Dregistry_cache.py111 def fetchFile (dstPath, repository, revision, filename, checksum, cacheDir): argument
117 if not os.path.exists(os.path.dirname(dstPath)):
118 os.makedirs(os.path.dirname(dstPath))
127 writeFile(dstPath, data)
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
DNativeLibrary.java205 final String dstPath = dst.toString(); in extractResource() local
206 log("extracting native library to: " + dstPath); in extractResource()
208 log(String.format("copied %d bytes to %s", nbytes, dstPath)); in extractResource()
209 return dstPath; in extractResource()
/external/skqp/src/utils/
DSkDashPath.cpp175 SkPath* dstPath) { in cull_path() argument
206 dstPath->moveTo(pts[0]); in cull_path()
208 dstPath->lineTo(pts[1]); in cull_path()
214 return !dstPath->isEmpty(); in cull_path()
221 dstPath->moveTo(pts[0]); in cull_path()
222 dstPath->lineTo(pts[1]); in cull_path()
/external/deqp/external/openglcts/scripts/
Dbuild_caselists.py133 dstPath = os.path.join(dstDir, caseListFile)
143 shutil.copyfile(srcPath, dstPath)
/external/skqp/samplecode/
DSampleTextEffects.cpp137 SkPath path, dstPath; in drawdots() local
139 pe->filterPath(&dstPath, path, &rec, nullptr); in drawdots()
/external/deqp/scripts/
Dbuild_caselists.py100 dstPath = os.path.join(dstDir, caseListFile)
110 shutil.copyfile(srcPath, dstPath)
/external/skia/samplecode/
DSampleTextEffects.cpp130 SkPath path, dstPath; in drawdots() local
132 pe->filterPath(&dstPath, path, &rec, nullptr); in drawdots()
/external/libcups/xcode/CUPS.xcodeproj/
Dproject.pbxproj2371 dstPath = /usr/share/man/man1/;
2380 dstPath = /usr/share/man/man1/;
2389 dstPath = /usr/share/man/man1/;
2398 dstPath = /usr/share/man/man1/;
2407 dstPath = /usr/share/man/man1/;
2416 dstPath = /usr/share/man/man1/;
2425 dstPath = /usr/share/man/man1/;
2434 dstPath = /usr/share/man/man1/;
2443 dstPath = /usr/share/man/man1/;
2452 dstPath = /usr/share/man/man1/;
[all …]
/external/unicode/testunicode.xcodeproj/
Dproject.pbxproj19 dstPath = /usr/share/man/man1/;
/external/skia/tools/skqp/src/
Dskqp.cpp198 static void print_backend_info(const char* dstPath, in print_backend_info() argument
201 SkFILEWStream out(dstPath); in print_backend_info()
/external/skqp/tools/skqp/src/
Dskqp.cpp186 static void print_backend_info(const char* dstPath, in print_backend_info() argument
189 SkFILEWStream out(dstPath); in print_backend_info()
/external/deqp/external/vulkancts/modules/vulkan/
DvktBuildPrograms.cpp393 const std::string& dstPath, in buildPrograms() argument
519 vk::BinaryRegistryWriter registryWriter (dstPath); in buildPrograms()
/external/capstone/xcode/Capstone.xcodeproj/
Dproject.pbxproj199 dstPath = /usr/share/man/man1/;
208 dstPath = /usr/share/man/man1/;
217 dstPath = /usr/share/man/man1/;
226 dstPath = /usr/share/man/man1/;
235 dstPath = /usr/share/man/man1/;
244 dstPath = /usr/share/man/man1/;
253 dstPath = /usr/share/man/man1/;
262 dstPath = /usr/share/man/man1/;
271 dstPath = /usr/share/man/man1/;
280 dstPath = /usr/share/man/man1/;
[all …]
/external/google-breakpad/src/tools/mac/symupload/symupload.xcodeproj/
Dproject.pbxproj23 dstPath = /usr/share/man/man1/;
/external/catch2/projects/XCode/OCTest/OCTest.xcodeproj/
Dproject.pbxproj23 dstPath = /usr/share/man/man1/;
/external/tensorflow/tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark.xcodeproj/
Dproject.pbxproj27 dstPath = "";

12