Home
last modified time | relevance | path

Searched refs:tuple_element (Results 1 – 25 of 35) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/__tuple/
H A Dtuple_element.h24 struct _LIBCPP_TEMPLATE_VIS tuple_element; variable
27 struct _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, const _Tp> {
28 typedef _LIBCPP_NODEBUG const typename tuple_element<_Ip, _Tp>::type type;
32 struct _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, volatile _Tp> {
33 typedef _LIBCPP_NODEBUG volatile typename tuple_element<_Ip, _Tp>::type type;
37 struct _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, const volatile _Tp> {
38 typedef _LIBCPP_NODEBUG const volatile typename tuple_element<_Ip, _Tp>::type type;
70 struct _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, __tuple_types<_Types...> > {
77 using tuple_element_t _LIBCPP_NODEBUG = typename tuple_element<_Ip, _Tp...>::type;
H A Dsfinae_helpers.h61 struct _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, tuple<_Tp...> > {
62 typedef _LIBCPP_NODEBUG typename tuple_element<_Ip, __tuple_types<_Tp...> >::type type;
/freebsd/contrib/llvm-project/libcxx/include/__fwd/
H A Dtuple.h22 struct _LIBCPP_TEMPLATE_VIS tuple_element; variable
33 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename tuple_element<_Ip, tuple<_Tp...> >::ty…
37 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 const typename tuple_element<_Ip, tuple<_Tp...>…
41 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename tuple_element<_Ip, tuple<_Tp...> >::ty…
45 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 const typename tuple_element<_Ip, tuple<_Tp...>…
H A Dpair.h26 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename tuple_element<_Ip, pair<_T1, _T2> >::t…
30 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 const typename tuple_element<_Ip, pair<_T1, _T2…
35 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename tuple_element<_Ip, pair<_T1, _T2> >::t…
39 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 const typename tuple_element<_Ip, pair<_T1, _T2…
/freebsd/contrib/llvm-project/libcxx/include/
H A Dutility152 template <size_t I, class T> struct tuple_element;
155 template <class T1, class T2> struct tuple_element<0, pair<T1, T2> >;
156 template <class T1, class T2> struct tuple_element<1, pair<T1, T2> >;
159 typename tuple_element<I, pair<T1, T2> >::type&
163 const typename tuple_element<I, pair<T1, T2> >::type&
167 typename tuple_element<I, pair<T1, T2> >::type&&
171 const typename tuple_element<I, pair<T1, T2> >::type&&
292 #include <__tuple/tuple_element.h>
H A Dtuple158 template <size_t I, class T> struct tuple_element; // undefined
159 template <size_t I, class... T> struct tuple_element<I, tuple<T...>>;
161 using tuple_element_t = typename tuple_element <I, T>::type; // C++14
165 typename tuple_element<I, tuple<T...>>::type&
168 const typename tuple_element<I, tuple<T...>>::type&
171 typename tuple_element<I, tuple<T...>>::type&&
174 const typename tuple_element<I, tuple<T...>>::type&&
226 #include <__tuple/tuple_element.h>
489 …typename tuple_element<_Indx, typename __make_tuple_types<_Tuple>::type>::type>::value...>::value))
491 … std::forward<typename tuple_element<_Indx, typename __make_tuple_types<_Tuple>::type>::type>(
[all …]
H A Dranges352 template<size_t I, class T> struct tuple_element;
359 struct tuple_element<0, ranges::subrange<I, S, K>> {
364 struct tuple_element<1, ranges::subrange<I, S, K>> {
369 struct tuple_element<0, const ranges::subrange<I, S, K>> {
374 struct tuple_element<1, const ranges::subrange<I, S, K>> {
442 #include <__tuple/tuple_element.h>
H A Darray102 template <size_t I, class T> struct tuple_element;
104 template <size_t I, class T, size_t N> struct tuple_element<I, array<T, N>>;
156 #include <__tuple/tuple_element.h>
441 struct _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, array<_Tp, _Size> > {
442 static_assert(_Ip < _Size, "Index out of bounds in std::tuple_element<> (std::array)");
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dsubrange.h248 struct tuple_element<0, ranges::subrange<_Ip, _Sp, _Kp>> {
253 struct tuple_element<1, ranges::subrange<_Ip, _Sp, _Kp>> {
258 struct tuple_element<0, const ranges::subrange<_Ip, _Sp, _Kp>> {
263 struct tuple_element<1, const ranges::subrange<_Ip, _Sp, _Kp>> {
H A Dzip_view.h93 typename tuple_element<_Indices, remove_cvref_t<_Tuple1>>::type,
94 typename tuple_element<_Indices, remove_cvref_t<_Tuple2>>::type>...>
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dpair.h584 struct _LIBCPP_TEMPLATE_VIS tuple_element<_Ip, pair<_T1, _T2> > {
589 struct _LIBCPP_TEMPLATE_VIS tuple_element<0, pair<_T1, _T2> > {
594 struct _LIBCPP_TEMPLATE_VIS tuple_element<1, pair<_T1, _T2> > {
648 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename tuple_element<_Ip, pair<_T1, _T…
654 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 const typename tuple_element<_Ip, pair<_…
660 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename tuple_element<_Ip, pair<_T1, _T…
666 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 const typename tuple_element<_Ip, pair<_…
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Darray.cppm
H A Dtuple.cppm
H A Dcomplex.inc65 using std::tuple_element;
H A Dutility.cppm
H A Dranges.cppm
H A Dranges.inc355 using std::tuple_element;
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_fdr_log_writer.h50 sizeof(typename std::tuple_element<Index, Tuple>::type) +
56 sizeof(typename std::tuple_element<0, Tuple>::type);
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dbind.h103 typedef typename tuple_element<is_placeholder<_Ti>::value - 1, _Uj>::type type;
111 return std::forward<typename tuple_element<__indx, _Uj>::type>(std::get<__indx>(__uj));
143 typedef typename tuple_element<is_placeholder<_Ti>::value - 1, _TupleUj>::type&& type;
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMapEntry.h169 struct tuple_element<I, llvm::StringMapEntry<ValueTy>>
H A DPointerIntPair.h289 struct tuple_element<
H A DSTLExtras.h2565 struct tuple_element<I, llvm::detail::enumerator_result<Refs...>>
2566 : std::tuple_element<I, std::tuple<Refs...>> {};
2569 struct tuple_element<I, const llvm::detail::enumerator_result<Refs...>>
2570 : std::tuple_element<I, std::tuple<Refs...>> {};
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_wrappers.cpp48 using Type = typename std::tuple_element<i, std::tuple<Args...>>::type;
/freebsd/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h480 using TupleElement = typename std::tuple_element<I, T>::type;
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h1419 R(typename std::tuple_element<I, std::tuple<Args...>>::type...);
1701 typename ::std::tuple_element<k, std::tuple<Args...>>::type;
2157 typename std::tuple_element<arg_id, args_type>::type...>(

12