HomeSort by relevance Sort by last modified time
    Searched full:allocator_type (Results 1 - 25 of 1050) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/strings/basic.string/string.cons/
alloc.pass.cpp 29 static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
36 assert(s.get_allocator() == typename S::allocator_type());
40 static_assert((noexcept(S{typename S::allocator_type{}})), "" );
42 static_assert((noexcept(S(typename S::allocator_type())) == std::is_nothrow_copy_constructible<typename S::allocator_type>::value), "" );
44 S s(typename S::allocator_type(5));
49 assert(s.get_allocator() == typename S::allocator_type(5));
63 static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
70 assert(s.get_allocator() == typename S::allocator_type());
74 static_assert((noexcept(S{typename S::allocator_type{}})), "" );
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.cons/
alloc.pass.cpp 29 static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
36 assert(s.get_allocator() == typename S::allocator_type());
40 static_assert((noexcept(S{typename S::allocator_type{}})), "" );
42 static_assert((noexcept(S(typename S::allocator_type())) == std::is_nothrow_copy_constructible<typename S::allocator_type>::value), "" );
44 S s(typename S::allocator_type(5));
49 assert(s.get_allocator() == typename S::allocator_type(5));
63 static_assert((noexcept(S()) == noexcept(typename S::allocator_type())), "" );
70 assert(s.get_allocator() == typename S::allocator_type());
74 static_assert((noexcept(S{typename S::allocator_type{}})), "" );
    [all...]
  /external/eigen/Eigen/src/StlSupport/
StdList.h 30 typedef list_base::allocator_type allocator_type; \
33 explicit list(const allocator_type& a = allocator_type()) : list_base(a) {} \
35 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_base(first, last, a) {} \
55 typedef typename list_base::allocator_type allocator_type; \
59 explicit list(const allocator_type& a = allocator_type()) : list_base(a) {}
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
unordered_set.h 63 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::__unordered_set
69 const allocator_type& __a = allocator_type())
80 const allocator_type& __a = allocator_type())
112 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::__unordered_multiset
118 const allocator_type& __a = allocator_type())
183 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::unordered_set
232 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::unordered_multiset
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
unordered_set.h 63 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::__unordered_set
69 const allocator_type& __a = allocator_type())
80 const allocator_type& __a = allocator_type())
112 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::__unordered_multiset
118 const allocator_type& __a = allocator_type())
183 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::unordered_set
232 typedef typename _Base::allocator_type allocator_type; typedef in class:tr1::unordered_multiset
    [all...]
  /external/clang/test/SemaCXX/
PR9908.cpp 13 typedef Alloc allocator_type; typedef in struct:allocator_traits
15 __allocator_traits_rebind<allocator_type, T>::type;
  /external/libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.trait/
uses_allocator.pass.cpp 25 typedef int allocator_type; typedef in struct:B
29 static int allocator_type; member in struct:C
33 static int allocator_type() { return 0; } function in struct:D
38 typedef int allocator_type; typedef in struct:E
58 test<false, C, decltype(C::allocator_type)>();
59 test<false, D, decltype(D::allocator_type)>();
70 // static_assert((!std::uses_allocator<C, decltype(C::allocator_type)>::value), "");
71 // static_assert((!std::uses_allocator<D, decltype(D::allocator_type)>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.uses/allocator.uses.trait/
uses_allocator.pass.cpp 25 typedef int allocator_type; typedef in struct:B
29 static int allocator_type; member in struct:C
33 static int allocator_type() { return 0; } function in struct:D
38 typedef int allocator_type; typedef in struct:E
58 test<false, C, decltype(C::allocator_type)>();
59 test<false, D, decltype(D::allocator_type)>();
70 // static_assert((!std::uses_allocator<C, decltype(C::allocator_type)>::value), "");
71 // static_assert((!std::uses_allocator<D, decltype(D::allocator_type)>::value), "");
  /external/libcxx/test/std/containers/sequences/vector.bool/
construct_default.pass.cpp 29 static_assert((noexcept(C()) == noexcept(typename C::allocator_type())), "" );
34 assert(c.get_allocator() == typename C::allocator_type());
39 assert(c1.get_allocator() == typename C::allocator_type());
45 test1(const typename C::allocator_type& a)
48 static_assert((noexcept(C{typename C::allocator_type{}})), "" );
50 static_assert((noexcept(C(typename C::allocator_type())) == std::is_nothrow_copy_constructible<typename C::allocator_type>::value), "" );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
construct_default.pass.cpp 29 static_assert((noexcept(C()) == noexcept(typename C::allocator_type())), "" );
34 assert(c.get_allocator() == typename C::allocator_type());
39 assert(c1.get_allocator() == typename C::allocator_type());
45 test1(const typename C::allocator_type& a)
48 static_assert((noexcept(C{typename C::allocator_type{}})), "" );
50 static_assert((noexcept(C(typename C::allocator_type())) == std::is_nothrow_copy_constructible<typename C::allocator_type>::value), "" );
  /external/clang/test/CodeGenCXX/
lpad-linetable.cpp 30 typedef _Alloc allocator_type; typedef in struct:std::_Vector_base
31 _Vector_base(const allocator_type& __a)
45 typedef _Alloc allocator_type; typedef in class:std::vector
46 vector(const allocator_type& __a = allocator_type())
  /external/libcxx/include/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
set 31 typedef Allocator allocator_type;
32 typedef typename allocator_type::reference reference;
33 typedef typename allocator_type::const_reference const_reference;
34 typedef typename allocator_type::size_type size_type;
35 typedef typename allocator_type::difference_type difference_type;
36 typedef typename allocator_type::pointer pointer;
37 typedef typename allocator_type::const_pointer const_pointer;
47 is_nothrow_default_constructible<allocator_type>::value &&
51 set(const value_compare& comp, const allocator_type& a);
57 const allocator_type& a)
    [all...]

Completed in 1111 milliseconds

1 2 3 4 5 6 7 8 91011>>