HomeSort by: relevance | last modified time | path
    Searched refs:_Tp2 (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stl_pair.h 769 template<class _Tp1, class _Tp2>
770 struct tuple_size<pair<_Tp1, _Tp2>>
774 template<class _Tp1, class _Tp2>
775 struct tuple_element<0, pair<_Tp1, _Tp2>>
779 template<class _Tp1, class _Tp2>
780 struct tuple_element<1, pair<_Tp1, _Tp2>>
781 { typedef _Tp2 type; };
784 template<typename _Tp1, typename _Tp2>
785 inline constexpr size_t tuple_size_v<pair<_Tp1, _Tp2>> = 2;
787 template<typename _Tp1, typename _Tp2>
    [all...]
uses_allocator_args.h 116 using _Tp2 = typename _Tp::second_type;
124 return std::uses_allocator_construction_args<_Tp2>(
134 using _Tp2 = typename _Tp::second_type;
138 std::uses_allocator_construction_args<_Tp2>(__a));
147 using _Tp2 = typename _Tp::second_type;
152 std::uses_allocator_construction_args<_Tp2>(__a,
162 using _Tp2 = typename _Tp::second_type;
166 std::uses_allocator_construction_args<_Tp2>(__a, __pr.second));
175 using _Tp2 = typename _Tp::second_type;
183 std::uses_allocator_construction_args<_Tp2>(__a
    [all...]
utility.h 242 template<typename _Tp0, typename _Tp1, typename _Tp2, typename... _Rest>
243 struct _Nth_type<2, _Tp0, _Tp1, _Tp2, _Rest...>
244 { using type = _Tp2; };
246 template<size_t _Np, typename _Tp0, typename _Tp1, typename _Tp2,
251 struct _Nth_type<_Np, _Tp0, _Tp1, _Tp2, _Rest...>
260 template<typename _Tp0, typename _Tp1, typename _Tp2, typename... _Rest>
261 struct _Nth_type<0, _Tp0, _Tp1, _Tp2, _Rest...>
264 template<typename _Tp0, typename _Tp1, typename _Tp2, typename... _Rest>
265 struct _Nth_type<1, _Tp0, _Tp1, _Tp2, _Rest...>
stl_algobase.h 1191 typename _Tp2, typename _Ref2, typename _Ptr2>
1195 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1389 typename _Tp2>
1394 _Tp2*, _Tp2*);
1397 typename _Tp2, typename _Ref2, typename _Ptr2>
1400 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>,
1401 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1404 typename _Tp2, typename _Ref2, typename _Ptr2>
1409 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
uses_allocator_args.h 124 using _Tp2 = typename _Tp::second_type;
132 return std::uses_allocator_construction_args<_Tp2>(
142 using _Tp2 = typename _Tp::second_type;
146 std::uses_allocator_construction_args<_Tp2>(__a));
155 using _Tp2 = typename _Tp::second_type;
160 std::uses_allocator_construction_args<_Tp2>(__a,
170 using _Tp2 = typename _Tp::second_type;
174 std::uses_allocator_construction_args<_Tp2>(__a, __pr.second));
183 using _Tp2 = typename _Tp::second_type;
191 std::uses_allocator_construction_args<_Tp2>(__a
    [all...]
memory_resource.h 242 template<typename _Tp1, typename _Tp2,
246 construct(pair<_Tp1, _Tp2>* __p, piecewise_construct_t,
252 __use_alloc<_Tp2, polymorphic_allocator, _Args2...>(*this);
256 ::new(__p) pair<_Tp1, _Tp2>(piecewise_construct,
261 template<typename _Tp1, typename _Tp2>
264 construct(pair<_Tp1, _Tp2>* __p)
267 template<typename _Tp1, typename _Tp2, typename _Up, typename _Vp>
270 construct(pair<_Tp1, _Tp2>* __p, _Up&& __x, _Vp&& __y)
277 template <typename _Tp1, typename _Tp2, typename _Up, typename _Vp>
280 construct(pair<_Tp1, _Tp2>* __p, const std::pair<_Up, _Vp>& __pr
    [all...]
utility.h 251 template<typename _Tp0, typename _Tp1, typename _Tp2, typename... _Rest>
252 struct _Nth_type<2, _Tp0, _Tp1, _Tp2, _Rest...>
253 { using type = _Tp2; };
255 template<size_t _Np, typename _Tp0, typename _Tp1, typename _Tp2,
260 struct _Nth_type<_Np, _Tp0, _Tp1, _Tp2, _Rest...>
265 template<typename _Tp0, typename _Tp1, typename _Tp2, typename... _Rest>
266 struct _Nth_type<0, _Tp0, _Tp1, _Tp2, _Rest...>
269 template<typename _Tp0, typename _Tp1, typename _Tp2, typename... _Rest>
270 struct _Nth_type<1, _Tp0, _Tp1, _Tp2, _Rest...>
stl_pair.h 104 template<size_t _Int, class _Tp1, class _Tp2>
105 constexpr typename tuple_element<_Int, pair<_Tp1, _Tp2>>::type&
106 get(pair<_Tp1, _Tp2>& __in) noexcept;
108 template<size_t _Int, class _Tp1, class _Tp2>
109 constexpr typename tuple_element<_Int, pair<_Tp1, _Tp2>>::type&&
110 get(pair<_Tp1, _Tp2>&& __in) noexcept;
112 template<size_t _Int, class _Tp1, class _Tp2>
113 constexpr const typename tuple_element<_Int, pair<_Tp1, _Tp2>>::type&
114 get(const pair<_Tp1, _Tp2>& __in) noexcept;
116 template<size_t _Int, class _Tp1, class _Tp2>
    [all...]
ranges_algobase.h 81 template<typename _Out2, typename _Tp2>
83 && convertible_to<const _Tp&, _Tp2>
85 operator out_value_result<_Out2, _Tp2>() const &
88 template<typename _Out2, typename _Tp2>
90 && convertible_to<_Tp, _Tp2>
92 operator out_value_result<_Out2, _Tp2>() &&
stl_algobase.h 1224 typename _Tp2, typename _Ref2, typename _Ptr2>
1228 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1425 typename _Tp2>
1430 _Tp2*, _Tp2*);
1433 typename _Tp2, typename _Ref2, typename _Ptr2>
1436 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>,
1437 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>);
1440 typename _Tp2, typename _Ref2, typename _Ptr2>
1445 _GLIBCXX_STD_C::_Deque_iterator<_Tp2, _Ref2, _Ptr2>
    [all...]
stl_uninitialized.h 424 template<typename _ForwardIterator, typename _Tp, typename _Tp2>
428 const _Tp& __x, allocator<_Tp2>&)
462 typename _Tp2>
466 const _Tp& __x, allocator<_Tp2>&)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
type_traits.h 212 typename _Tp2 = typename __promote<_Tp>::__type,
216 typedef __typeof__(_Tp2() + _Up2()) __type;
220 typename _Tp2 = typename __promote<_Tp>::__type,
225 typedef __typeof__(_Tp2() + _Up2() + _Vp2()) __type;
229 typename _Tp2 = typename __promote<_Tp>::__type,
235 typedef __typeof__(_Tp2() + _Up2() + _Vp2() + _Wp2()) __type;
aligned_buffer.h 54 struct _Tp2 { _Tp _M_t; };
56 alignas(__alignof__(_Tp2::_M_t)) unsigned char _M_storage[sizeof(_Tp)];
pointer.h 481 template<typename _Tp1, typename _Tp2> \
483 operator OPERATOR(const _Pointer_adapter<_Tp1>& __lhs, _Tp2 __rhs) \
486 template<typename _Tp1, typename _Tp2> \
488 operator OPERATOR(_Tp1 __lhs, const _Pointer_adapter<_Tp2>& __rhs) \
491 template<typename _Tp1, typename _Tp2> \
494 const _Pointer_adapter<_Tp2>& __rhs) \
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
aligned_buffer.h 54 struct _Tp2 { _Tp _M_t; };
56 alignas(__alignof__(_Tp2::_M_t)) unsigned char _M_storage[sizeof(_Tp)];
type_traits.h 242 typename _Tp2 = typename __promote<_Tp>::__type,
246 typedef __typeof__(_Tp2() + _Up2()) __type;
250 typename _Tp2 = typename __promote<_Tp>::__type,
255 typedef __typeof__(_Tp2() + _Up2() + _Vp2()) __type;
259 typename _Tp2 = typename __promote<_Tp>::__type,
265 typedef __typeof__(_Tp2() + _Up2() + _Vp2() + _Wp2()) __type;
pointer.h 487 template<typename _Tp1, typename _Tp2> \
489 operator OPERATOR(const _Pointer_adapter<_Tp1>& __lhs, _Tp2 __rhs) \
492 template<typename _Tp1, typename _Tp2> \
494 operator OPERATOR(_Tp1 __lhs, const _Pointer_adapter<_Tp2>& __rhs) \
497 template<typename _Tp1, typename _Tp2> \
500 const _Pointer_adapter<_Tp2>& __rhs) \
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
base.h 269 template<typename _Tp1, typename _Tp2, typename _Result
271 + *static_cast<_Tp2*>(0))>
272 struct _Plus : public std::binary_function<_Tp1, _Tp2, _Result>
275 operator()(const _Tp1& __x, const _Tp2& __y) const
285 template<typename _Tp1, typename _Tp2, typename _Result
287 * *static_cast<_Tp2*>(0))>
288 struct _Multiplies : public std::binary_function<_Tp1, _Tp2, _Result>
291 operator()(const _Tp1& __x, const _Tp2& __y) const
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
base.h 269 template<typename _Tp1, typename _Tp2, typename _Result
271 + *static_cast<_Tp2*>(0))>
272 struct _Plus : public std::binary_function<_Tp1, _Tp2, _Result>
275 operator()(const _Tp1& __x, const _Tp2& __y) const
285 template<typename _Tp1, typename _Tp2, typename _Result
287 * *static_cast<_Tp2*>(0))>
288 struct _Multiplies : public std::binary_function<_Tp1, _Tp2, _Result>
291 operator()(const _Tp1& __x, const _Tp2& __y) const
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
shared_ptr.h 265 template<typename _Tp1, typename _Tp2>
267 const shared_ptr<_Tp2>& __b) noexcept
280 template<typename _Tp1, typename _Tp2>
283 const shared_ptr<_Tp2>& __b) noexcept
296 template<typename _Tp1, typename _Tp2>
299 const shared_ptr<_Tp2>& __b) noexcept
302 using __elem_t2 = typename shared_ptr<_Tp2>::element_type;
323 template<typename _Tp1, typename _Tp2>
326 const shared_ptr<_Tp2>& __b) noexcept
339 template<typename _Tp1, typename _Tp2>
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/
shared_ptr.h 265 template<typename _Tp1, typename _Tp2>
267 const shared_ptr<_Tp2>& __b) noexcept
280 template<typename _Tp1, typename _Tp2>
283 const shared_ptr<_Tp2>& __b) noexcept
296 template<typename _Tp1, typename _Tp2>
299 const shared_ptr<_Tp2>& __b) noexcept
302 using __elem_t2 = typename shared_ptr<_Tp2>::element_type;
323 template<typename _Tp1, typename _Tp2>
326 const shared_ptr<_Tp2>& __b) noexcept
339 template<typename _Tp1, typename _Tp2>
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/
tag_and_trait.hpp 213 template<typename _Tp1, typename _Tp2, typename _Tp3, typename _Tp4>
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/
tag_and_trait.hpp 213 template<typename _Tp1, typename _Tp2, typename _Tp3, typename _Tp4>
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/
debug_map_base.hpp 58 template<typename _CharT, typename _Traits, typename _Tp1, typename _Tp2>
61 const std::pair<_Tp1, _Tp2>& p)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/
debug_map_base.hpp 58 template<typename _CharT, typename _Traits, typename _Tp1, typename _Tp2>
61 const std::pair<_Tp1, _Tp2>& p)

Completed in 46 milliseconds

1 2