/third_party/libphonenumber/tools/cpp/src/cpp-build/ |
H A D | generate_geocoding_data.cc | 85 class DirEntry { class 87 DirEntry(const char* n, DirEntryKinds k) in DirEntry() function in i18n::phonenumbers::DirEntry 102 bool ListDirectory(const string& path, vector<DirEntry>* entries) { in ListDirectory() 136 entries->push_back(DirEntry(entry->d_name, kind)); in ListDirectory() 573 vector<DirEntry> entries; in WriteSource() 578 for (vector<DirEntry>::const_iterator it = entries.begin(); in WriteSource() 585 vector<DirEntry> files; in WriteSource() 590 for (vector<DirEntry>::const_iterator it_files = files.begin(); in WriteSource()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
H A D | dir.rs | 54 pub fn read(&mut self) -> Option<io::Result<DirEntry>> { in read() 131 Some(Ok(DirEntry { in read() 185 type Item = io::Result<DirEntry>; 201 pub struct DirEntry { in fmt() structure names 207 impl DirEntry { impls
|
/third_party/rust/crates/syn/tests/repo/ |
H A D | mod.rs | 14 use walkdir::{DirEntry, WalkDir}; 266 pub fn base_dir_filter(entry: &DirEntry) -> bool { in base_dir_filter()
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
H A D | dir.rs | 102 pub fn read(&mut self) -> Option<io::Result<DirEntry>> { in read() 122 let result = DirEntry { in read() 350 type Item = io::Result<DirEntry>; 368 pub struct DirEntry { structure names 375 impl DirEntry { impls
|
/third_party/rust/crates/rustix/tests/fs/ |
H A D | readdir.rs | 8 use rustix::fs::{Dir, DirEntry}; 44 fn read_entries(dir: &mut Dir) -> HashMap<String, DirEntry> { in read_entries()
|
/third_party/vulkan-loader/tests/framework/shim/ |
H A D | unix_shim.cpp | 140 platform_shim.dir_entries.push_back(DirEntry{dir, std::string(path_name), {}, 0, true}); in OPENDIR_FUNC_NAME() 143 platform_shim.dir_entries.push_back(DirEntry{dir, std::string(path_name), {}, 0, false}); in OPENDIR_FUNC_NAME() 159 [dir_stream](DirEntry const& entry) { return entry.directory == dir_stream; }); in READDIR_FUNC_NAME() 205 [dir_stream](DirEntry const& entry) { return entry.directory == dir_stream; }); in CLOSEDIR_FUNC_NAME()
|
H A D | shim.h | 121 struct DirEntry { struct 218 std::vector<DirEntry> dir_entries;
|
/third_party/python/Lib/ |
H A D | shutil.py | 204 if isinstance(src, os.DirEntry) and hasattr(os.path, 'samestat'): 221 return fn.stat() if isinstance(fn, os.DirEntry) else os.stat(fn) 224 return fn.is_symlink() if isinstance(fn, os.DirEntry) else os.path.islink(fn) 248 fn = fn.path if isinstance(fn, os.DirEntry) else fn 371 if isinstance(src, os.DirEntry):
|
/third_party/rust/crates/rustix/src/fs/ |
H A D | mod.rs | 113 pub use dir::{Dir, DirEntry};
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 13602 class os.DirEntry "DirEntry *" "DirEntryType" 13623 } DirEntry; typedef 13626 DirEntry_dealloc(DirEntry *entry) in DirEntry_dealloc() 13640 DirEntry_test_mode(PyTypeObject *defining_class, DirEntry *self, 13644 os.DirEntry.is_symlink -> bool 13652 os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class) in os_DirEntry_is_symlink_impl() 13670 DirEntry_fetch_stat(PyObject *module, DirEntry *self, int follow_symlinks) in DirEntry_fetch_stat() 13733 DirEntry_get_lstat(PyTypeObject *defining_class, DirEntry *self) in DirEntry_get_lstat() 13748 os.DirEntry [all...] |
/third_party/python/Lib/test/ |
H A D | test_genericalias.py | 42 from os import DirEntry namespace 115 DirEntry,
|
H A D | test_os.py | 4136 self.assertRaises(TypeError, os.DirEntry) 4141 self.assertIsInstance(entry, os.DirEntry) 4194 self.assertIsInstance(entry, os.DirEntry) 4291 self.assertEqual(repr(entry), "<DirEntry 'file.txt'>")
|
H A D | test_shutil.py | 647 self.assertIsInstance(src_dir_entry, os.DirEntry)
|
/third_party/python/Modules/clinic/ |
H A D | posixmodule.c.h | 8327 os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class); 8330 os_DirEntry_is_symlink(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_DirEntry_is_symlink() 8359 os_DirEntry_stat_impl(DirEntry *self, PyTypeObject *defining_class, 8363 os_DirEntry_stat(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_DirEntry_stat() 8400 os_DirEntry_is_dir_impl(DirEntry *self, PyTypeObject *defining_class, 8404 os_DirEntry_is_dir(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_DirEntry_is_dir() 8446 os_DirEntry_is_file_impl(DirEntry *self, PyTypeObject *defining_class, 8450 os_DirEntry_is_file(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_DirEntry_is_file() 8492 os_DirEntry_inode_impl(DirEntry *self); 8495 os_DirEntry_inode(DirEntry *sel [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | VirtualFileSystem.cpp | 1712 for (const std::unique_ptr<RedirectingFileSystem::Entry> &DirEntry : in lookupPath() 1715 lookupPath(Start, End, DirEntry.get()); in lookupPath()
|