reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Derived Classes

include/llvm/Support/FileSystem.h
  246 class file_status : public basic_file_status {

References

include/llvm/Support/AlignOf.h
   30   T t;
   39 template <typename T> union SizerImpl<T> { char arr[sizeof(T)]; };
   50       llvm::detail::SizerImpl<T, Ts...>)];
include/llvm/Support/ErrorOr.h
   59   static const bool isRef = std::is_reference<T>::value;
   61   using wrap = std::reference_wrapper<typename std::remove_reference<T>::type>;
   64   using storage_type = typename std::conditional<isRef, wrap, T>::type;
   67   using reference = typename std::remove_reference<T>::type &;
   68   using const_reference = const typename std::remove_reference<T>::type &;
   69   using pointer = typename std::remove_reference<T>::type *;
   70   using const_pointer = const typename std::remove_reference<T>::type *;
   88           typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  100       const ErrorOr<OtherT> &Other,
  101       typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
  101       typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
  120       ErrorOr<OtherT> &&Other,
  121       typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
  121       typename std::enable_if<std::is_convertible<OtherT, T>::value>::type * =
  209   void moveConstruct(ErrorOr<OtherT> &&Other) {
include/llvm/Support/FileSystem.h
  246 class file_status : public basic_file_status {
  453 bool exists(const basic_file_status &status);
  554 bool is_directory(const basic_file_status &status);
  576 bool is_regular_file(const basic_file_status &status);
  600 bool is_symlink_file(const basic_file_status &status);
  625 bool is_other(const basic_file_status &status);
  724 bool status_known(const basic_file_status &s);
 1220   basic_file_status Status;                 // If available.
 1225                            basic_file_status Status = basic_file_status())
 1232                         basic_file_status Status = basic_file_status());
 1238   ErrorOr<basic_file_status> status() const;
 1367         ErrorOr<basic_file_status> status = State->Stack.top()->status();
lib/Support/CachePruning.cpp
  223     ErrorOr<sys::fs::basic_file_status> StatusOrErr = File->status();
lib/Support/Path.cpp
 1025 bool exists(const basic_file_status &status) {
 1029 bool status_known(const basic_file_status &s) {
 1040 bool is_directory(const basic_file_status &status) {
 1052 bool is_regular_file(const basic_file_status &status) {
 1064 bool is_symlink_file(const basic_file_status &status) {
 1076 bool is_other(const basic_file_status &status) {
 1091                                        basic_file_status Status) {
lib/Support/Unix/Path.inc
  864 ErrorOr<basic_file_status> directory_entry::status() const {
 1040     ErrorOr<basic_file_status> st = Item.status();
tools/clang/tools/extra/modularize/CoverageChecker.cpp
  251     llvm::ErrorOr<sys::fs::basic_file_status> Status = I->status();
  375     llvm::ErrorOr<sys::fs::basic_file_status> Status = I->status();
tools/clang/tools/extra/modularize/ModularizeUtilities.cpp
  411     llvm::ErrorOr<llvm::sys::fs::basic_file_status> Status = I->status();
usr/include/c++/7.4.0/bits/move.h
   98     move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
 1526 	static void __test_aux(_To1);
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 2171     { typedef _Iffalse type; };