| /freebsd-14.2/contrib/llvm-project/libcxx/include/__compare/ |
| H A D | ordering.h | 111 _ValueT __value_; 142 return __v.__value_ < 0; 150 return __v.__value_ > 0; 158 return 0 < __v.__value_; 166 return 0 > __v.__value_; 182 _ValueT __value_; 218 return __v.__value_ < 0; 226 return __v.__value_ > 0; 234 return 0 < __v.__value_; 242 return 0 > __v.__value_; [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | iota_view.h | 130 return __value_; 134 ++__value_; 151 --__value_; 173 __value_ += __n; 188 __value_ -= __n; 202 return __x.__value_ == __y.__value_; 208 return __x.__value_ < __y.__value_; 232 return __x.__value_ <=> __y.__value_; 262 if (__y.__value_ > __x.__value_) { 265 return difference_type(__x.__value_ - __y.__value_); [all …]
|
| H A D | non_propagating_cache.h | 54 optional<__wrapper> __value_ = nullopt; variable 60 : __value_(nullopt) {} in __non_propagating_cache() 63 : __value_(nullopt) { in __non_propagating_cache() 64 __other.__value_.reset(); in __non_propagating_cache() 69 __value_.reset(); 75 __value_.reset(); 76 __other.__value_.reset(); 80 _LIBCPP_HIDE_FROM_ABI constexpr _Tp& operator*() { return __value_->__t_; } 81 _LIBCPP_HIDE_FROM_ABI constexpr _Tp const& operator*() const { return __value_->__t_; } 87 return __value_.emplace(__from_tag{}, __f).__t_; in __emplace_from() [all …]
|
| H A D | single_view.h | 44 _LIBCPP_NO_UNIQUE_ADDRESS __movable_box<_Tp> __value_; variable 55 : __value_(in_place, __t) { in single_view() 58 …_LIBCPP_HIDE_FROM_ABI constexpr explicit single_view(_Tp&& __t) : __value_(in_place, std::move(__t… in single_view() 63 : __value_{in_place, std::forward<_Args>(__args)...} {} in single_view() 75 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* data() noexcept { return __value_.operator->(); } in data() 77 _LIBCPP_HIDE_FROM_ABI constexpr const _Tp* data() const noexcept { return __value_.operator->(); } in data()
|
| H A D | repeat_view.h | 86 : __value_(in_place, __value), __bound_(__bound_sentinel) { 92 : __value_(in_place, std::move(__value)), __bound_(__bound_sentinel) { 101 : __value_(in_place, std::make_from_tuple<_Tp>(std::move(__value_args))), 108 …_HIDE_FROM_ABI constexpr __iterator begin() const { return __iterator(std::addressof(*__value_)); } 113 return __iterator(std::addressof(*__value_), __bound_); 125 _LIBCPP_NO_UNIQUE_ADDRESS __movable_box<_Tp> __value_; 142 : __value_(__value), __current_(__bound_sentinel) {} 152 _LIBCPP_HIDE_FROM_ABI constexpr const _Tp& operator*() const noexcept { return *__value_; } 222 const _Tp* __value_ = nullptr;
|
| H A D | istream_view.h | 50 *__stream_ >> __value_; in begin() 58 _LIBCPP_NO_UNIQUE_ADDRESS _Val __value_ = _Val(); variable 79 *__parent_->__stream_ >> __parent_->__value_; 85 _LIBCPP_HIDE_FROM_ABI _Val& operator*() const { return __parent_->__value_; }
|
| H A D | take_view.h | 312 …noexcept(noexcept(views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 313 …-> decltype( views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 314 …{ return views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:… 323 noexcept(noexcept(views::repeat(*__range.__value_, static_cast<_Dist>(__n)))) 324 -> decltype( views::repeat(*__range.__value_, static_cast<_Dist>(__n))) 325 { return views::repeat(*__range.__value_, static_cast<_Dist>(__n)); }
|
| H A D | drop_view.h | 270 …noexcept(noexcept(views::repeat(*__range.__value_, ranges::distance(__range) - std::min<_Dist>(ran… 271 …-> decltype( views::repeat(*__range.__value_, ranges::distance(__range) - std::min<_Dist>(ran… 272 …{ return views::repeat(*__range.__value_, ranges::distance(__range) - std::min<_Dist>(ran…
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__format/ |
| H A D | format_arg.h | 105 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__monostate_); in decltype() 107 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__boolean_); in decltype() 111 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__int_); in decltype() 116 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__i128_); in decltype() 121 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__unsigned_); in decltype() 126 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__u128_); in decltype() 131 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__float_); in decltype() 133 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__double_); in decltype() 141 return std::invoke(std::forward<_Visitor>(__vis), __arg.__value_.__ptr_); in decltype() 248 __basic_format_arg_value<_Context> __value_; [all …]
|
| H A D | format_arg_store.h | 221 *__values++ = __arg.__value_; in __create_packed_storage()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__iterator/ |
| H A D | istream_iterator.h | 49 _Tp __value_; variable 52 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR istream_iterator() : __in_stream_(nullptr), __value_() {} in istream_iterator() 57 if (!(*__in_stream_ >> __value_)) in istream_iterator() 61 _LIBCPP_HIDE_FROM_ABI const _Tp& operator*() const { return __value_; } 64 if (!(*__in_stream_ >> __value_))
|
| H A D | common_iterator.h | 53 return std::addressof(__value_); 55 iter_value_t<_Iter> __value_; member 59 …_HIDE_FROM_ABI constexpr const iter_value_t<_Iter>& operator*() const noexcept { return __value_; } 60 iter_value_t<_Iter> __value_; member
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | compressed_pair.h | 50 …P_HIDE_FROM_ABI _LIBCPP_CONSTEXPR explicit __compressed_pair_elem(__value_init_tag) : __value_() {} in __compressed_pair_elem() 54 : __value_(std::forward<_Up>(__u)) {} in __compressed_pair_elem() 60 : __value_(std::forward<_Args>(std::get<_Indices>(__args))...) {} in __compressed_pair_elem() 63 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 reference __get() _NOEXCEPT { return __value_;… in __get() 64 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR const_reference __get() const _NOEXCEPT { return __value_;… in __get() 67 _Tp __value_;
|
| H A D | uses_allocator_construction.h | 202 _Type& __value_; in __uses_allocator_construction_args() member 205 return __do_construct(std::forward<_Type>(this->__value_)); in __uses_allocator_construction_args()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | __tree | 669 __node_value_type __value_; 1435 __cache.__get()->__value_ = *__first; 1516 __cache.__get()->__value_ = std::move(__t.remove(__t.begin())->__value_); 1594 if (value_comp()(__nd->__value_, __v)) { 1888 __nd->__value_ = __v; 2110 if (value_comp()(__k, __rt->__value_)) { 2127 if (value_comp()(__k, __rt->__value_)) { 2204 if (value_comp()(__k, __rt->__value_)) { 2226 if (value_comp()(__k, __rt->__value_)) { 2248 if (value_comp()(__k, __rt->__value_)) { [all …]
|
| H A D | future | 582 _Up __value_; 600 reinterpret_cast<_Rp*>(&__value_)->~_Rp(); 610 ::new ((void*)&__value_) _Rp(std::forward<_Arg>(__arg)); 621 ::new ((void*)&__value_) _Rp(std::forward<_Arg>(__arg)); 632 return std::move(*reinterpret_cast<_Rp*>(&__value_)); 641 return *reinterpret_cast<_Rp*>(&__value_); 650 _Up __value_; 671 __value_ = std::addressof(__arg); 681 __value_ = std::addressof(__arg); 692 return *__value_; [all …]
|
| H A D | tuple | 306 _Hp __value_; 320 …BI constexpr __tuple_leaf() _NOEXCEPT_(is_nothrow_default_constructible<_Hp>::value) : __value_() { 325 …_LIBCPP_HIDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 0>, const _Alloc&) : __value_(… 331 : __value_(allocator_arg_t(), __a) { 336 …IDE_FROM_ABI constexpr __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a) : __value_(__a) { 345 : __value_(std::forward<_Tp>(__t)) { 353 : __value_(std::forward<_Tp>(__t)) { 361 : __value_(allocator_arg_t(), __a, std::forward<_Tp>(__t)) { 368 : __value_(std::forward<_Tp>(__t), __a) { 387 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Hp& get() _NOEXCEPT { return __value_; } [all …]
|
| H A D | optional | 400 __raw_type* __value_; 418 _LIBCPP_HIDE_FROM_ABI constexpr __optional_storage_base() noexcept : __value_(nullptr) {} 422 : __value_(std::addressof(__uarg)) { 428 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void reset() noexcept { __value_ = nullptr; } 430 _LIBCPP_HIDE_FROM_ABI constexpr bool has_value() const noexcept { return __value_ != nullptr; } 432 _LIBCPP_HIDE_FROM_ABI constexpr value_type& __get() const& noexcept { return *__value_; } 434 …ABI constexpr value_type&& __get() const&& noexcept { return std::forward<value_type>(*__value_); } 442 __value_ = std::addressof(__val); 455 *__value_ = std::forward<_That>(__opt).__get();
|
| H A D | map | 741 __alloc_traits::destroy(__na_, std::addressof(__p->__value_.__get_value().second)); 743 __alloc_traits::destroy(__na_, std::addressof(__p->__value_.__get_value().first)); 1512 __tree_.__insert_unique(__e.__i_, __m.__tree_.remove(__m.begin().__i_)->__value_.__move()); 1543 __node_traits::construct(__na, std::addressof(__h->__value_.__get_value().first), __k); 1545 __node_traits::construct(__na, std::addressof(__h->__value_.__get_value().second)); 1560 return __r->__value_.__get_value().second; 1571 return static_cast<__node_pointer>(__child)->__value_.__get_value().second; 1580 return static_cast<__node_pointer>(__child)->__value_.__get_value().second; 2098 …__tree_.__insert_multi(__e.__i_, std::move(__m.__tree_.remove(__m.begin().__i_)->__value_.__move()…
|
| H A D | forward_list | 326 _Tp __value_; 330 _LIBCPP_HIDE_FROM_ABI _Tp& __get_value() { return __value_; }
|
| H A D | set | 950 insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_)); 1410 insert(__e, std::move(__s.__tree_.remove(__s.begin())->__value_));
|
| H A D | list | 322 _Tp __value_; 326 _LIBCPP_HIDE_FROM_ABI _Tp& __get_value() { return __value_; }
|
| H A D | __hash_table | 120 _Tp __value_; 124 _LIBCPP_HIDE_FROM_ABI _Tp& __get_value() { return __value_; }
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | find.h | 159 const _Tp& __value_; member 161 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __find_segment(const _Tp& __value) : __value_(__value) {} in __find_segment() 166 return std::__find_impl(__first, __last, __value_, __proj); in operator()
|