Home
last modified time | relevance | path

Searched refs:has_root_directory (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/
H A Dpath.decompose.pass.cpp163 assert(p.has_root_directory() != TC.root_directory.empty()); in decompPathTest()
182 assert(p.is_absolute() == p.has_root_directory()); in decompPathTest()
194 assert(p.is_absolute() == p.has_root_directory()); in decompPathTest()
/llvm-project-15.0.7/libcxx/include/__filesystem/
H A Dpath.h567 if (__p.has_root_directory()) {
573 if (has_filename() || (!has_root_directory() && is_absolute()))
943 _LIBCPP_HIDE_FROM_ABI bool has_root_directory() const {
984 return has_root_directory();
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DPath.h449 bool has_root_directory(const Twine &path, Style style = Style::native);
/llvm-project-15.0.7/llvm/lib/Support/
H A DPath.cpp622 bool has_root_directory(const Twine &path, Style style) { in has_root_directory() function
675 bool rootDir = has_root_directory(p, style); in is_absolute()
910 bool rootDirectory = path::has_root_directory(p); in make_absolute()
/llvm-project-15.0.7/llvm/tools/llvm-rc/
H A DResourceFileWriter.cpp1526 if (sys::path::has_root_directory(File)) in loadFile()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DPath.cpp225 (void)path::has_root_directory(*i); in TEST()