Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dpair.h70 using first_type = _T1; member
91 static const bool value = !is_reference<first_type>::value && !is_reference<second_type>::value;
136 …__enable_if_t<is_assignable<first_type&, _U1 const&>::value && is_assignable<second_type&, _U2 con…
157 return is_constructible<first_type, _U1>::value && is_constructible<second_type, _U2>::value; in __is_pair_constructible()
162 return is_convertible<_U1, first_type>::value && is_convertible<_U2, second_type>::value; in __is_implicit()
172 …is_nothrow_default_constructible<first_type>::value && is_nothrow_default_constructible<second_typ… in pair()
179 …pair(_T1 const& __t1, _T2 const& __t2) noexcept(is_nothrow_copy_constructible<first_type>::value && in pair()
193 pair(_U1&& __u1, _U2&& __u2) noexcept(is_nothrow_constructible<first_type, _U1>::value && in pair()
201 pair(pair<_U1, _U2>& __p) noexcept((is_nothrow_constructible<first_type, _U1&>::value && in pair()
211 …pair(pair<_U1, _U2> const& __p) noexcept(is_nothrow_constructible<first_type, _U1 const&>::value && in pair()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dranges_iterator_traits.h27 using __range_key_type = __remove_const_t<typename ranges::range_value_t<_Range>::first_type>;
34 …pair<const typename ranges::range_value_t<_Range>::first_type, typename ranges::range_value_t<_Ran…
H A Diterator_traits.h488 …iter_key_type = __remove_const_t<typename iterator_traits<_InputIterator>::value_type::first_type>;
495 pair<const typename iterator_traits<_InputIterator>::value_type::first_type,
/freebsd/contrib/llvm-project/libcxx/include/ext/
H A Dhash_map231 _LIBCPP_HIDE_FROM_ABI size_t operator()(const typename _Tp::first_type& __x) const {
245 …_LIBCPP_HIDE_FROM_ABI size_t operator()(const typename _Tp::first_type& __x) const { return __hash…
257 _LIBCPP_HIDE_FROM_ABI bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const {
260 _LIBCPP_HIDE_FROM_ABI bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const {
264 operator()(const typename _Tp::first_type& __x, const typename _Tp::first_type& __y) const {
278 _LIBCPP_HIDE_FROM_ABI bool operator()(const typename _Tp::first_type& __x, const _Tp& __y) const {
281 _LIBCPP_HIDE_FROM_ABI bool operator()(const _Tp& __x, const typename _Tp::first_type& __y) const {
285 operator()(const typename _Tp::first_type& __x, const typename _Tp::first_type& __y) const {
300 typedef typename value_type::first_type first_type;
341 typedef const typename _HashIterator::value_type::first_type key_type;
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDiffLog.cpp40 Diff.push_back(DiffRecord(DiffRecord::first_type(nullptr), R)); in addRight()
/freebsd/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/contrib/llvm-project/libcxx/include/
H A Dutility76 typedef T1 first_type;
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2956 typedef typename RawPairType::first_type KeyType;
3058 typedef typename RawPairType::first_type FirstType;
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-comparisons_test.cc1404 using first_type = int; in TEST() typedef