Home
last modified time | relevance | path

Searched refs:first_type (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__utility/
H A Dpair.h85 using first_type = _T1;
190 _NOEXCEPT_((is_nothrow_constructible<first_type, _U1>::value &&
205 _NOEXCEPT_((is_nothrow_constructible<first_type, _U1>::value &&
238 _NOEXCEPT_((is_nothrow_constructible<first_type, _U1&&>::value &&
244 _NOEXCEPT_((is_nothrow_constructible<first_type, _U1&&>::value &&
280 _NOEXCEPT_((is_nothrow_constructible<first_type, _Args1...>::value &&
302 first = std::forward<first_type>(__p.first);
309 __enable_if_t< is_assignable<first_type&, _U1 const&>::value &&
338 noexcept(is_nothrow_assignable_v<const first_type&, first_type> &&
340 …requires(is_assignable_v<const first_type&, first_type> && is_assignable_v<const second_type&, sec…
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__iterator/
H A Dranges_iterator_traits.h28 using __range_key_type = __remove_const_t<typename ranges::range_value_t<_Range>::first_type>;
35 pair<add_const_t<typename ranges::range_value_t<_Range>::first_type>,
H A Diterator_traits.h489 …iter_key_type = __remove_const_t<typename iterator_traits<_InputIterator>::value_type::first_type>;
496 … pair< typename add_const<typename iterator_traits<_InputIterator>::value_type::first_type>::type,
/freebsd-14.2/contrib/llvm-project/libcxx/include/ext/
H A Dhash_map232 _LIBCPP_HIDE_FROM_ABI size_t operator()(const typename _Tp::first_type& __x) const {
246 …_LIBCPP_HIDE_FROM_ABI size_t operator()(const typename _Tp::first_type& __x) const { return __hash…
258 _LIBCPP_HIDE_FROM_ABI bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const {
261 _LIBCPP_HIDE_FROM_ABI bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const {
265 operator()(const typename _Tp::first_type& __x, const typename _Tp::first_type& __y) const {
279 _LIBCPP_HIDE_FROM_ABI bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const {
282 _LIBCPP_HIDE_FROM_ABI bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const {
286 operator()(const typename _Tp::first_type& __x, const typename _Tp::first_type& __y) const {
301 typedef typename value_type::first_type first_type;
342 typedef const typename _HashIterator::value_type::first_type key_type;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDiffLog.cpp40 Diff.push_back(DiffRecord(DiffRecord::first_type(nullptr), R)); in addRight()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/
H A Duses_allocator_construction.h67 return std::__uses_allocator_construction_args<typename _Pair::first_type>( in __uses_allocator_construction_args()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dutility76 typedef T1 first_type;
/freebsd-14.2/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2955 typedef typename RawPairType::first_type KeyType;
3057 typedef typename RawPairType::first_type FirstType;
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-matchers-comparisons_test.cc1404 using first_type = int; in TEST() typedef