HomeSort by relevance Sort by last modified time
    Searched refs:allocator_traits (Results 51 - 75 of 79) sorted by null

1 23 4

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
db_deallocate.pass.cpp 33 using Traits = std::allocator_traits<Alloc>;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/
types.pass.cpp 53 static_assert((std::is_same<typename S::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
54 static_assert((std::is_same<typename S::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
57 static_assert((std::is_same<typename S::pointer, typename std::allocator_traits<Allocator>::pointer>::value), "");
58 static_assert((std::is_same<typename S::const_pointer, typename std::allocator_traits<Allocator>::const_pointer>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.traits/allocator.traits.members/
allocate_hint.pass.cpp 13 // struct allocator_traits
59 assert(std::allocator_traits<A<int> >::allocate(a, 10, nullptr) == reinterpret_cast<int*>(static_cast<std::uintptr_t>(0xDEADBEEF)));
62 assert(std::allocator_traits<B<int> >::allocate(b, 11, nullptr) == reinterpret_cast<int*>(static_cast<std::uintptr_t>(0xFEADBEEF)));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
alloc_traits.h 85 struct allocator_traits struct
204 using rebind_traits = allocator_traits<rebind_alloc<_Tp>>;
433 const bool allocator_traits<_Alloc>::__allocate_helper<_Alloc2>::value;
438 allocator_traits<_Alloc>::__construct_helper<_Tp, _Args...>::value;
442 const bool allocator_traits<_Alloc>::__destroy_helper<_Tp>::value;
446 const bool allocator_traits<_Alloc>::__maxsize_helper<_Alloc2>::value;
450 const bool allocator_traits<_Alloc>::__select_helper<_Alloc2>::value;
465 typedef allocator_traits<_Alloc> __traits;
473 typedef allocator_traits<_Alloc> __traits;
488 typedef allocator_traits<_Alloc> __traits
    [all...]
shared_ptr_base.h 352 typedef typename allocator_traits<_Alloc>::template
398 // 2070. allocate_shared should use allocator_traits<A>::construct
399 allocator_traits<_Alloc>::construct(__a, _M_impl._M_ptr,
407 { allocator_traits<_Alloc>::destroy(_M_impl, _M_impl._M_ptr); }
413 typedef typename allocator_traits<_Alloc>::template
470 typedef typename allocator_traits<_Alloc>::template
496 typedef typename allocator_traits<_Alloc>::template
532 using _Alloc_traits = allocator_traits<_Alloc>;
971 typedef allocator_traits<_Alloc> _Alloc_traits;
985 typedef allocator_traits<_Alloc2> __traits
    [all...]
forward_list.h 352 typedef allocator_traits<_Tp_alloc_type> _Alloc_traits;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
alloc_traits.h 85 struct allocator_traits struct
204 using rebind_traits = allocator_traits<rebind_alloc<_Tp>>;
433 const bool allocator_traits<_Alloc>::__allocate_helper<_Alloc2>::value;
438 allocator_traits<_Alloc>::__construct_helper<_Tp, _Args...>::value;
442 const bool allocator_traits<_Alloc>::__destroy_helper<_Tp>::value;
446 const bool allocator_traits<_Alloc>::__maxsize_helper<_Alloc2>::value;
450 const bool allocator_traits<_Alloc>::__select_helper<_Alloc2>::value;
465 typedef allocator_traits<_Alloc> __traits;
473 typedef allocator_traits<_Alloc> __traits;
488 typedef allocator_traits<_Alloc> __traits
    [all...]
shared_ptr_base.h 352 typedef typename allocator_traits<_Alloc>::template
398 // 2070. allocate_shared should use allocator_traits<A>::construct
399 allocator_traits<_Alloc>::construct(__a, _M_impl._M_ptr,
407 { allocator_traits<_Alloc>::destroy(_M_impl, _M_impl._M_ptr); }
413 typedef typename allocator_traits<_Alloc>::template
470 typedef typename allocator_traits<_Alloc>::template
496 typedef typename allocator_traits<_Alloc>::template
532 using _Alloc_traits = allocator_traits<_Alloc>;
971 typedef allocator_traits<_Alloc> _Alloc_traits;
985 typedef allocator_traits<_Alloc2> __traits
    [all...]
forward_list.h 352 typedef allocator_traits<_Tp_alloc_type> _Alloc_traits;
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
default_initialization_allocator.h 20 typedef std::allocator_traits<Allocator> AllocatorTraits;
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx-std-suppression.h 24 class allocator_traits { class in namespace:std
63 typedef allocator_traits<_Alloc> __alloc_traits;
  /external/libcxx/test/std/containers/sequences/vector.bool/
types.pass.cpp 47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
48 static_assert((std::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
types.pass.cpp 47 static_assert((std::is_same<typename C::size_type, typename std::allocator_traits<Allocator>::size_type>::value), "");
48 static_assert((std::is_same<typename C::difference_type, typename std::allocator_traits<Allocator>::difference_type>::value), "");
  /external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.types/
allocator_pointers.pass.cpp 20 // struct allocator_traits
40 typename std::allocator_traits<Alloc>::pointer vp;
41 typename std::allocator_traits<Alloc>::const_pointer cvp;
77 typename std::allocator_traits<Alloc>::void_pointer vp;
78 typename std::allocator_traits<Alloc>::const_void_pointer cvp;
  /external/libcxx/test/std/utilities/memory/default.allocator/
allocator_pointers.pass.cpp 19 // struct allocator_traits
39 typename std::allocator_traits<Alloc>::pointer vp;
40 typename std::allocator_traits<Alloc>::const_pointer cvp;
76 typename std::allocator_traits<Alloc>::void_pointer vp;
77 typename std::allocator_traits<Alloc>::const_void_pointer cvp;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/allocator.adaptor/allocator.adaptor.types/
allocator_pointers.pass.cpp 20 // struct allocator_traits
40 typename std::allocator_traits<Alloc>::pointer vp;
41 typename std::allocator_traits<Alloc>::const_pointer cvp;
77 typename std::allocator_traits<Alloc>::void_pointer vp;
78 typename std::allocator_traits<Alloc>::const_void_pointer cvp;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/default.allocator/
allocator_pointers.pass.cpp 19 // struct allocator_traits
39 typename std::allocator_traits<Alloc>::pointer vp;
40 typename std::allocator_traits<Alloc>::const_pointer cvp;
76 typename std::allocator_traits<Alloc>::void_pointer vp;
77 typename std::allocator_traits<Alloc>::const_void_pointer cvp;
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
allocate.pass.cpp 51 using Traits = std::allocator_traits<Alloc>;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
allocate.pass.cpp 51 using Traits = std::allocator_traits<Alloc>;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
alloc_traits.h 123 : std::allocator_traits<_Alloc>
128 typedef std::allocator_traits<_Alloc> _Base_type;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
alloc_traits.h 123 : std::allocator_traits<_Alloc>
128 typedef std::allocator_traits<_Alloc> _Base_type;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
container_test_types.h 321 typedef std::allocator_traits<A1> A1T;
323 typedef std::allocator_traits<A2> A2T;
test_allocator.h 25 inline typename std::allocator_traits<Alloc>::size_type
27 typedef std::allocator_traits<Alloc> AT;
  /external/libcxx/test/support/
container_test_types.h 336 typedef std::allocator_traits<A1> A1T;
338 typedef std::allocator_traits<A2> A2T;
test_allocator.h 25 inline typename std::allocator_traits<Alloc>::size_type
27 typedef std::allocator_traits<Alloc> AT;

Completed in 1020 milliseconds

1 23 4