/external/deqp/external/vulkancts/ |
D | build_spirv_binaries.py | 55 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/ |
D | api_path.c | 123 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/ |
D | fetch_sources.py | 90 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/ |
D | Deprecator.java | 30 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/ |
D | registry_cache.py | 66 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/ |
D | xeBatchResultToXml.cpp | 232 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()
|
D | xeExtractShaderPrograms.cpp | 50 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/ |
D | vgapi.csv | 5 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/ |
D | vktBuildPrograms.cpp | 180 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/ |
D | SkDashPath.cpp | 95 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/ |
D | build_caselists.py | 100 dstPath = os.path.join(dstDir, caseListFile) 110 shutil.copyfile(srcPath, dstPath)
|
/external/mesa3d/include/VG/ |
D | openvg.h | 593 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/ |
D | ClockFaceView.cpp | 207 SkPath path, dstPath; in drawdots() local 209 pe->filterPath(&dstPath, path, &rec, nullptr); in drawdots()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkBinaryRegistry.cpp | 300 BinaryRegistryWriter::BinaryRegistryWriter (const std::string& dstPath) in BinaryRegistryWriter() argument 301 : m_dstPath (dstPath) in BinaryRegistryWriter()
|
D | vkBinaryRegistry.hpp | 195 BinaryRegistryWriter (const std::string& dstPath);
|
/external/google-breakpad/src/tools/mac/symupload/symupload.xcodeproj/ |
D | project.pbxproj | 23 dstPath = /usr/share/man/man1/;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/ |
D | project.pbxproj | 404 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/ |
D | project.pbxproj | 182 dstPath = Headers/internal;
|
/external/protobuf/gtest/xcode/gtest.xcodeproj/ |
D | project.pbxproj | 181 dstPath = Headers/internal;
|
/external/google-breakpad/src/client/mac/handler/minidump_test.xcodeproj/ |
D | project.pbxproj | 90 dstPath = /usr/share/man/man1/;
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/gtest.xcodeproj/ |
D | project.pbxproj | 182 dstPath = Headers/internal;
|
/external/google-breakpad/src/client/mac/Breakpad.xcodeproj/ |
D | project.pbxproj | 552 dstPath = "";
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR.xcodeproj/ |
D | project.pbxproj | 540 dstPath = "";
|
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |