Searched refs:nullopt_t (Results 1 – 8 of 8) sorted by relevance
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | optional | 24 struct nullopt_t{see below }; 25 inline constexpr nullopt_t nullopt(unspecified ); 45 template <class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; 46 template <class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; 47 template <class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; 48 template <class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; 49 template <class T> constexpr bool operator<(const optional<T>&, nullopt_t) noexcept; 50 template <class T> constexpr bool operator<(nullopt_t, const optional<T>&) noexcept; 51 template <class T> constexpr bool operator<=(const optional<T>&, nullopt_t) noexcept; 52 template <class T> constexpr bool operator<=(nullopt_t, const optional<T>&) noexcept; [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | optional | 24 struct nullopt_t{see below }; 25 inline constexpr nullopt_t nullopt(unspecified ); 45 template <class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; 46 template <class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; 47 template <class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; 48 template <class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; 49 template <class T> constexpr bool operator<(const optional<T>&, nullopt_t) noexcept; 50 template <class T> constexpr bool operator<(nullopt_t, const optional<T>&) noexcept; 51 template <class T> constexpr bool operator<=(const optional<T>&, nullopt_t) noexcept; 52 template <class T> constexpr bool operator<=(nullopt_t, const optional<T>&) noexcept; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/ |
| H A D | optional.hpp | 10 using nullopt_t = std::experimental::nullopt_t; typedef 11 constexpr nullopt_t nullopt = std::experimental::nullopt;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/ |
| H A D | optional | 81 struct nullopt_t 85 // nullopt_t() = delete; 90 // Must be constexpr for nullopt_t to be literal. 91 explicit constexpr nullopt_t(_Construct) { } 96 constexpr nullopt_t nullopt { nullopt_t::_Construct::_Token }; 155 constexpr _Optional_base(nullopt_t) noexcept 292 constexpr _Optional_base(nullopt_t) noexcept 442 static_assert(__and_<__not_<is_same<remove_cv_t<_Tp>, nullopt_t>>, 530 operator=(nullopt_t) noexcept 782 operator==(const optional<_Tp>& __lhs, nullopt_t) noexcept [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/ |
| H A D | optional | 81 struct nullopt_t 85 // nullopt_t() = delete; 90 // Must be constexpr for nullopt_t to be literal. 91 explicit constexpr nullopt_t(_Construct) { } 96 constexpr nullopt_t nullopt { nullopt_t::_Construct::_Token }; 155 constexpr _Optional_base(nullopt_t) noexcept 292 constexpr _Optional_base(nullopt_t) noexcept 442 static_assert(__and_<__not_<is_same<remove_cv_t<_Tp>, nullopt_t>>, 530 operator=(nullopt_t) noexcept 782 operator==(const optional<_Tp>& __lhs, nullopt_t) noexcept [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/optional/f27e7908/include/experimental/ |
| H A D | optional | 250 struct nullopt_t 253 constexpr explicit nullopt_t(init){} 255 constexpr nullopt_t nullopt{nullopt_t::init()}; 353 static_assert( !std::is_same<typename std::decay<T>::type, nullopt_t>::value, "bad T" ); 401 constexpr optional(nullopt_t) noexcept : OptionalBase<T>() {}; 437 optional& operator=(nullopt_t) noexcept 609 static_assert( !std::is_same<T, nullopt_t>::value, "bad T" ); 618 constexpr optional(nullopt_t) noexcept : ref(nullptr) {} 633 optional& operator=(nullopt_t) noexcept { 753 template <class T> constexpr bool operator==(const optional<T>& x, nullopt_t) noexcept [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | optional | 63 struct nullopt_t 67 // nullopt_t() = delete; 72 // Must be constexpr for nullopt_t to be literal. 73 explicit constexpr nullopt_t(_Construct) { } 77 inline constexpr nullopt_t nullopt { nullopt_t::_Construct::_Token }; 672 static_assert(!is_same_v<remove_cv_t<_Tp>, nullopt_t>); 692 constexpr optional(nullopt_t) noexcept { } 775 operator=(nullopt_t) noexcept 1074 operator==(const optional<_Tp>& __lhs, nullopt_t) noexcept 1080 operator<=>(const optional<_Tp>& __x, nullopt_t) noexcept [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | optional | 63 struct nullopt_t 67 // nullopt_t() = delete; 72 // Must be constexpr for nullopt_t to be literal. 73 explicit constexpr nullopt_t(_Construct) { } 77 inline constexpr nullopt_t nullopt { nullopt_t::_Construct::_Token }; 672 static_assert(!is_same_v<remove_cv_t<_Tp>, nullopt_t>); 692 constexpr optional(nullopt_t) noexcept { } 775 operator=(nullopt_t) noexcept 1074 operator==(const optional<_Tp>& __lhs, nullopt_t) noexcept 1080 operator<=>(const optional<_Tp>& __x, nullopt_t) noexcept [all …]
|