Home
last modified time | relevance | path

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

12

/external/deqp/external/vulkancts/
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): argument
63 fullDstPath = os.path.realpath(dstPath)
108 if os.path.exists(args.dstPath):
109 cleanDstDir(args.dstPath)
111 os.makedirs(args.dstPath)
113 execBuildPrograms(buildCfg, generator, module, args.dstPath)
/external/mesa3d/src/gallium/state_trackers/vega/
Dapi_path.c123 void vegaAppendPath(VGPath dstPath, VGPath srcPath) in vegaAppendPath() argument
128 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) { in vegaAppendPath()
133 dst = handle_to_path(dstPath); in vegaAppendPath()
143 void vegaAppendPathData(VGPath dstPath, in vegaAppendPathData() argument
152 if (dstPath == VG_INVALID_HANDLE) { in vegaAppendPathData()
171 p = handle_to_path(dstPath); in vegaAppendPathData()
186 void vegaModifyPathCoords(VGPath dstPath, in vegaModifyPathCoords() argument
194 if (dstPath == VG_INVALID_HANDLE) { in vegaModifyPathCoords()
203 p = handle_to_path(dstPath); in vegaModifyPathCoords()
221 void vegaTransformPath(VGPath dstPath, VGPath srcPath) in vegaTransformPath() argument
[all …]
/external/deqp/external/
Dfetch_sources.py90 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
95 if not os.path.exists(os.path.dirname(dstPath)):
96 os.mkdir(os.path.dirname(dstPath))
98 writeFile(dstPath, data)
105 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
122 if not os.path.exists(dstPath):
123 os.mkdir(dstPath)
126 if os.path.exists(os.path.join(dstPath, entry)):
129 shutil.move(os.path.join(topLevelPath, entry), dstPath)
134 self.postExtract(dstPath)
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecator.java30 String dstPath = null; in main() local
42 dstPath = args[++i]; in main()
71 if (dstPath == null) { in main()
74 dstDir = new File(dstPath); in main()
77 err.append("\nunable to create dst: '" + dstPath + "'"); in main()
80 err.append("\ndst exists but is not directory: '" + dstPath + "'"); in main()
/external/deqp/scripts/khr_util/
Dregistry_cache.py66 def fetchFile (dstPath, url, checksum): argument
72 if not os.path.exists(os.path.dirname(dstPath)):
73 os.makedirs(os.path.dirname(dstPath))
82 writeFile(dstPath, data)
/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
70 …const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de… in writeShaderProgram()
214 else if (cmdLine.dstPath.empty()) in parseCommandLine()
215 cmdLine.dstPath = arg; in parseCommandLine()
/external/mesa3d/src/mapi/vgapi/
Dvgapi.csv5 void, AppendPath, VGPath dstPath, VGPath srcPath
6 void, AppendPathData, VGPath dstPath, VGint numSegments, const VGubyte…
47 VGboolean, InterpolatePath, VGPath dstPath, VGPath startPath, VGPath endPath…
53 void, ModifyPathCoords, VGPath dstPath, VGint startIndex, VGint numSegme…
77 void, TransformPath, VGPath dstPath, VGPath srcPath
/external/deqp/external/vulkancts/modules/vulkan/
DvktBuildPrograms.cpp180 BuildStats buildPrograms (tcu::TestContext& testCtx, const std::string& dstPath, bool validateBinar… in buildPrograms() argument
185 const tcu::DirArchive srcArchive (dstPath.c_str()); in buildPrograms()
186 UniquePtr<vk::BinaryRegistryWriter> writer (new vk::BinaryRegistryWriter(dstPath)); in buildPrograms()
/external/skia/src/utils/
DSkDashPath.cpp95 SkPath* dstPath) { in cull_path() argument
148 dstPath->moveTo(pts[0]); in cull_path()
149 dstPath->lineTo(pts[1]); in cull_path()
/external/deqp/scripts/
Dbuild_caselists.py100 dstPath = os.path.join(dstDir, caseListFile)
110 shutil.copyfile(srcPath, dstPath)
/external/mesa3d/include/VG/
Dopenvg.h593 VG_API_CALL void VG_API_ENTRY vgAppendPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
594 VG_API_CALL void VG_API_ENTRY vgAppendPathData(VGPath dstPath,
598 VG_API_CALL void VG_API_ENTRY vgModifyPathCoords(VGPath dstPath, VGint startIndex,
601 VG_API_CALL void VG_API_ENTRY vgTransformPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
602 VG_API_CALL VGboolean VG_API_ENTRY vgInterpolatePath(VGPath dstPath,
/external/skia/samplecode/
DClockFaceView.cpp207 SkPath path, dstPath; in drawdots() local
209 pe->filterPath(&dstPath, path, &rec, nullptr); in drawdots()
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp300 BinaryRegistryWriter::BinaryRegistryWriter (const std::string& dstPath) in BinaryRegistryWriter() argument
301 : m_dstPath (dstPath) in BinaryRegistryWriter()
DvkBinaryRegistry.hpp195 BinaryRegistryWriter (const std::string& dstPath);
/external/google-breakpad/src/tools/mac/symupload/symupload.xcodeproj/
Dproject.pbxproj23 dstPath = /usr/share/man/man1/;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/
Dproject.pbxproj404 dstPath = /usr/share/man/man1/;
413 dstPath = /usr/share/man/man1/;
422 dstPath = /usr/share/man/man1/;
431 dstPath = /usr/share/man/man1/;
440 dstPath = /usr/share/man/man1/;
449 dstPath = /usr/share/man/man1/;
458 dstPath = /usr/share/man/man1/;
467 dstPath = /usr/share/man/man1/;
477 dstPath = /usr/share/man/man1/;
486 dstPath = /usr/share/man/man1/;
/external/google-breakpad/src/testing/gtest/xcode/gtest.xcodeproj/
Dproject.pbxproj182 dstPath = Headers/internal;
/external/protobuf/gtest/xcode/gtest.xcodeproj/
Dproject.pbxproj181 dstPath = Headers/internal;
/external/google-breakpad/src/client/mac/handler/minidump_test.xcodeproj/
Dproject.pbxproj90 dstPath = /usr/share/man/man1/;
/external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/gtest.xcodeproj/
Dproject.pbxproj182 dstPath = Headers/internal;
/external/google-breakpad/src/client/mac/Breakpad.xcodeproj/
Dproject.pbxproj552 dstPath = "";
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR.xcodeproj/
Dproject.pbxproj540 dstPath = "";
/external/robolectric/v3/runtime/
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...

12