Home
last modified time | relevance | path

Searched refs:__fs_is_empty (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__filesystem/
H A Doperations.h121 _LIBCPP_FUNC_VIS bool __fs_is_empty(const path& __p, error_code* __ec = nullptr);
122 inline _LIBCPP_HIDE_FROM_ABI bool is_empty(const path& __p) { return __fs_is_empty(__p); } in is_empty()
123 …IDE_FROM_ABI bool is_empty(const path& __p, error_code& __ec) { return __fs_is_empty(__p, &__ec); } in is_empty()
/llvm-project-15.0.7/libcxx/src/filesystem/
H A Doperations.cpp1175 bool __fs_is_empty(const path& p, error_code* ec) { in __fs_is_empty() function