Home
last modified time | relevance | path

Searched refs:rebind (Results 1 – 25 of 67) sorted by relevance

123

/external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.types/
Drebind.pass.cpp33 template <class U> using rebind = B1<U>; typedef
35 template <class U> struct rebind {typedef B1<U> other;};
50 template <class V> using rebind = D1<V, U>; typedef
52 template <class V> struct rebind {typedef D1<V, U> other;};
59 …static_assert((std::is_same<std::pointer_traits<A<int*> >::rebind<double*>, A<double*> >::value), … in main()
60 …static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>, B1<double> >::value), ""… in main()
61 …static_assert((std::is_same<std::pointer_traits<C<char, int> >::rebind<double>, C<double, int> >::… in main()
62 …static_assert((std::is_same<std::pointer_traits<D<char, int> >::rebind<double>, D1<double, int> >:… in main()
64 …static_assert((std::is_same<std::pointer_traits<A<int*> >::rebind<double*>::other, A<double*> >::v… in main()
65 …static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>::other, B1<double> >::val… in main()
[all …]
/external/clang/test/Index/
Dannotate-nested-name-specifier.cpp107 typedef typename outer_alias::inner::vector<type>::template rebind<type> type1;
108 typedef typename outer_alias::inner::vector<type>::template rebind<type>::other type2;
109 typedef class outer_alias::inner::vector<type>::template rebind<type> type3;
110 typedef class outer_alias::inner::vector<type>::template rebind<type>::other type4;
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
Drebind_alloc.pass.cpp30 template <class U> struct rebind {typedef ReboundA<U> other;}; argument
41 template <class V> struct rebind {typedef ReboundB<V, U> other;}; struct
61 template <class U> struct rebind {typedef ReboundA<U> otter;}; struct
/external/libcxx/test/std/utilities/memory/pointer.traits/
Drebind.pass.cpp25 static_assert((std::is_same<std::pointer_traits<int*>::rebind<double>, double*>::value), ""); in main()
27 …static_assert((std::is_same<std::pointer_traits<int*>::rebind<double>::other, double*>::value), ""… in main()
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
Dreduce_to_column.hpp63 typename Reductor::template rebind<work_elem_type>::other op; in call()
72 typename Reductor::template rebind<work_elem_type>::other op; in call()
81 typename Reductor::template rebind<work_elem_type>::other op; in call()
90 typename Reductor::template rebind<work_elem_type>::other op; in call()
/external/libcxx/test/std/utilities/memory/allocator.traits/
Drebind_traits.pass.cpp30 template <class U> struct rebind {typedef ReboundA<U> other;}; argument
41 template <class V> struct rebind {typedef ReboundB<V, U> other;}; struct
61 template <class U> struct rebind {typedef ReboundA<U> otter;}; struct
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/
Dreduce_to_vec.hpp69 template <typename U> struct rebind struct
89 template <typename U> struct rebind struct
109 template <typename U> struct rebind struct
129 template <typename U> struct rebind struct
/external/clang/test/SemaCXX/
DPR9908.cpp7 typedef typename _Tp::template rebind<_Up>::other type;
27 template <class U> struct rebind {typedef ReboundA<U> other;}; argument
/external/clang/test/CodeGenCXX/
Dlpad-linetable.cpp18 struct rebind struct in std::allocator
25 typedef typename _Alloc::template rebind<_Tp>::other _Tp_alloc_type;
Dthunk-use-after-free.cpp8 template < typename > struct rebind { struct
15 typedef typename _Alloc::template rebind < _Tp >::other _Tp_alloc_type;
Ddebug-info-use-after-free.cpp95 template < typename > struct rebind { struct
102 typedef typename _Alloc::template rebind < _Tp >::other _Tp_alloc_type;
/external/clang/test/SemaTemplate/
Dalias-templates.cpp29 template<typename U> using rebind_thing = typename thing::template rebind<U>;
30 template<typename U> using rebind = traits<rebind_thing<U>>; typedef
46 template<typename U> using rebind = thing<U>; typedef
69 itt::rebind<bool> btr;
Dinstantiate-member-template.cpp232 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>* = 0);
244 template <class U> struct rebind {typedef B1<U> other;}; struct
252 template <class V> struct rebind {typedef D1<V, U> other;}; argument
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_state_tss.c70 boolean reemit = svga->rebind.texture_samplers; in update_tss_binding()
165 svga->rebind.texture_samplers = FALSE; in update_tss_binding()
189 assert(svga->rebind.texture_samplers); in svga_reemit_tss_bindings()
230 svga->rebind.texture_samplers = FALSE; in svga_reemit_tss_bindings()
Dsvga_state_framebuffer.c47 boolean reemit = svga->rebind.rendertargets; in emit_framebuffer()
92 svga->rebind.rendertargets = FALSE; in emit_framebuffer()
113 assert(svga->rebind.rendertargets); in svga_reemit_framebuffer_bindings()
145 svga->rebind.rendertargets = FALSE; in svga_reemit_framebuffer_bindings()
Dsvga_context.c231 svga->rebind.rendertargets = TRUE; in svga_context_flush()
232 svga->rebind.texture_samplers = TRUE; in svga_context_flush()
/external/libcxx/test/support/
Dtest_allocator.h54 template <class U> struct rebind {typedef test_allocator<U> other;}; argument
114 template <class U> struct rebind {typedef non_default_test_allocator<U> other;}; struct
172 template <class U> struct rebind {typedef test_allocator<U> other;}; argument
/external/libcxx/test/std/thread/futures/
Dtest_allocator.h48 template <class U> struct rebind {typedef test_allocator<U> other;}; struct
104 template <class U> struct rebind {typedef test_allocator<U> other;}; argument
/external/libcxx/test/std/utilities/memory/default.allocator/
Dallocator_void.pass.cpp31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other, in main()
Dallocator_types.pass.cpp44 static_assert((std::is_same<std::allocator<char>::rebind<int>::other, in main()
/external/dhcpcd-6.8.2/
Ddhcp6.c1954 uint32_t u32, renew, rebind; in dhcp6_findia() local
2035 rebind = ntohl(u32); in dhcp6_findia()
2039 renew = rebind = 0; /* appease gcc */ in dhcp6_findia()
2063 if (renew > rebind && rebind > 0) { in dhcp6_findia()
2067 ifp->name, renew, rebind, sfrom); in dhcp6_findia()
2069 rebind = 0; in dhcp6_findia()
2074 if (rebind != 0 && in dhcp6_findia()
2075 (rebind < state->rebind || state->rebind == 0)) in dhcp6_findia()
2076 state->rebind = rebind; in dhcp6_findia()
2115 state->renew = state->rebind = state->expire = 0; in dhcp6_validatelease()
[all …]
/external/libcxx/test/std/containers/
Dstack_allocator.h30 template <class U> struct rebind {typedef stack_allocator<U, N> other;}; struct
/external/eigen/Eigen/src/StlSupport/
Ddetails.h34 struct rebind struct
/external/libcxx/include/
D__tree561 rebind<__tree_node_base<_VoidPtr> >
563 rebind<__tree_node_base<_VoidPtr> >::other
572 rebind<__tree_node_base>
574 rebind<__tree_node_base>::other
579 rebind<const __tree_node_base>
581 rebind<const __tree_node_base>::other
636 rebind<value_type>
638 rebind<value_type>::other
707 rebind<const value_type>
709 rebind<const value_type>::other
[all …]
/external/v8/src/
Dzone-allocator.h25 template<class O> struct rebind { struct

123