/third_party/node/tools/configure.d/ |
D | nodedownload.py | 71 def unpack(packedfile, parent_path): argument 76 icuzip.extractall(parent_path) 77 return parent_path 81 icuzip.extractall(parent_path) 82 return parent_path
|
/third_party/python/Lib/ |
D | pathlib.py | 398 def select_from(self, parent_path): argument 401 path_cls = type(parent_path) 404 scandir = parent_path._accessor.scandir 405 if not is_dir(parent_path): 407 return self._select_from(parent_path, is_dir, exists, scandir) 412 def _select_from(self, parent_path, is_dir, exists, scandir): argument 413 yield parent_path 422 def _select_from(self, parent_path, is_dir, exists, scandir): argument 424 path = parent_path._make_child_relpath(self.name) 438 def _select_from(self, parent_path, is_dir, exists, scandir): argument [all …]
|
/third_party/skia/third_party/externals/harfbuzz/test/fuzzing/ |
D | run-draw-fuzzer-tests.py | 45 parent_path = os.path.join (srcdir, "fonts") variable 46 for file in os.listdir (parent_path): 48 path = os.path.join (parent_path, file)
|
D | run-shape-fuzzer-tests.py | 45 parent_path = os.path.join (srcdir, "fonts") variable 46 for file in os.listdir (parent_path): 47 path = os.path.join (parent_path, file)
|
D | run-subset-fuzzer-tests.py | 45 def run_dir (parent_path): argument 47 for file in os.listdir (parent_path): 48 path = os.path.join(parent_path, file)
|
/third_party/skia/third_party/externals/freetype/tests/scripts/ |
D | download-test-fonts.py | 119 parent_path = os.path.dirname(dest_path) 120 if not os.path.exists(parent_path): 121 os.makedirs(parent_path)
|
/third_party/vulkan-loader/tests/framework/shim/ |
D | unix_shim.cpp | 174 if (platform_shim.is_fake_path(path.parent_path())) { in ACCESS_FUNC_NAME() 175 fs::path fake_path = platform_shim.get_fake_path(path.parent_path()); in ACCESS_FUNC_NAME() 191 if (platform_shim.is_fake_path(path.parent_path())) { in FOPEN_FUNC_NAME() 192 auto fake_path = platform_shim.get_fake_path(path.parent_path()) / path.filename(); in FOPEN_FUNC_NAME()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Testing/Support/ |
D | SupportHelpers.cpp | 17 SmallString<128> BaseDir = llvm::sys::path::parent_path(Argv0); in findSrcDirMap() 27 SmallString<128> PathInParentDir = llvm::sys::path::parent_path(BaseDir); in findSrcDirMap()
|
/third_party/python/Lib/importlib/ |
D | util.py | 96 parent_path = parent.__path__ 102 parent_path = None 103 return _find_spec(fullname, parent_path)
|
D | _bootstrap_external.py | 1237 parent_path = tuple(self._get_parent_path()) # Make a copy 1238 if parent_path != self._last_parent_path: 1239 spec = self._path_finder(self._name, parent_path) 1245 self._last_parent_path = parent_path # Save the copy
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
D | radeonsi-run-tests.py | 172 if args.parent_path: 176 piglit_path = os.path.join(args.parent_path, "piglit") 177 glcts_path = os.path.join(args.parent_path, "glcts") 178 deqp_path = os.path.join(args.parent_path, "deqp")
|
/third_party/gn/src/gn/ |
D | visual_studio_writer.cc | 884 std::string_view parent_path; in ResolveSolutionFolders() local 885 while ((parent_path = FindParentDir(&folder->path)) != root_folder_path_) { in ResolveSolutionFolders() 886 auto it = processed_paths.find(parent_path); in ResolveSolutionFolders() 893 FindLastDirComponent(SourceDir(std::string(parent_path)))), in ResolveSolutionFolders() 894 std::string(parent_path), in ResolveSolutionFolders() 895 MakeGuid(std::string(parent_path), kGuidSeedFolder)); in ResolveSolutionFolders() 896 processed_paths[parent_path] = new_folder.get(); in ResolveSolutionFolders()
|
/third_party/elfutils/debuginfod/ |
D | debuginfod-client.c | 789 char parent_path[PATH_MAX]; in cache_find_section() local 792 snprintf (parent_path, PATH_MAX, "%s/debuginfo", target_cache_dir); in cache_find_section() 793 fd = open (parent_path, O_RDONLY); in cache_find_section() 796 rc = extract_section (fd, scn_name, parent_path, usr_path); in cache_find_section() 804 snprintf (parent_path, PATH_MAX, "%s/executable", target_cache_dir); in cache_find_section() 805 fd = open (parent_path, O_RDONLY); in cache_find_section() 809 rc = extract_section (fd, scn_name, parent_path, usr_path); in cache_find_section()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileCollector.cpp | 44 std::string Directory = sys::path::parent_path(SrcPath).str(); in getRealPath() 129 sys::fs::create_directories(sys::path::parent_path(entry.RPath), in copyFiles()
|
D | Path.cpp | 466 StringRef parent_path(StringRef path, Style style) { in parent_path() function 513 OldPrefixDir = parent_path(OldPrefix, style); in replace_path_prefix() 669 return !parent_path(p, style).empty(); in has_parent_path() 952 StringRef Parent = path::parent_path(P); in create_directories() 1115 SmallString<128> PathStr = path::parent_path(Path); in replace_filename()
|
D | Signals.cpp | 121 StringRef Parent = llvm::sys::path::parent_path(Argv0); in printSymbolizedStackTrace()
|
D | VirtualFileSystem.cpp | 1486 StringRef Parent = sys::path::parent_path(Trimmed, path_style); in parseEntry() 1634 SmallString<256> OverlayAbsDir = sys::path::parent_path(YAMLFilePath); in create() 2002 startDirectory(path::parent_path(Entry.VPath)); in write() 2015 StringRef Dir = path::parent_path(Entry.VPath); in write()
|
/third_party/gn/src/base/files/ |
D | file_util_win.cc | 340 FilePath parent_path(full_path.DirName()); in CreateDirectoryAndGetError() local 341 if (parent_path.value() == full_path.value()) { in CreateDirectoryAndGetError() 347 if (!CreateDirectoryAndGetError(parent_path, error)) { in CreateDirectoryAndGetError()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Path.h | 269 StringRef parent_path(StringRef path);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Path.cpp | 493 StringRef parent_path(StringRef path) { in parent_path() function 659 return !parent_path(p).empty(); in has_parent_path() 886 StringRef Parent = path::parent_path(P); in create_directories() 977 SmallString<128> path = path::parent_path(Path); in replace_filename()
|
D | Signals.cpp | 84 StringRef Parent = llvm::sys::path::parent_path(Argv0); in printSymbolizedStackTrace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerDeclContext.h | 35 SmallString<256> ParentPath = sys::path::parent_path(Path); in resolve()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Path.h | 302 StringRef parent_path(StringRef path, Style style = Style::native);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | GsymCreator.cpp | 30 llvm::StringRef directory = llvm::sys::path::parent_path(Path, Style); in insertFile()
|
/third_party/vulkan-loader/tests/framework/ |
D | test_util.cpp | 312 path path::parent_path() const { in parent_path() function in fs::path 346 *this = parent_path() / replacement.str(); in replace_filename()
|