HomeSort by relevance Sort by last modified time
    Searched refs:Allocator (Results 276 - 300 of 818) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/hash_fn/
ranged_hash_fn.hpp 53 template<typename Key, typename Hash_Fn, typename Allocator,
58 template<typename Key, typename Hash_Fn, typename Allocator, \
62 ranged_hash_fn<Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
69 template<typename Key, typename Hash_Fn, typename Allocator,
71 class ranged_hash_fn< Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
75 typedef typename Allocator::size_type size_type;
78 typedef typename Allocator::template rebind< Key>::other key_allocator;
140 template<typename Key, typename Hash_Fn, typename Allocator, \
144 ranged_hash_fn<Key,Hash_Fn, Allocator, Comb_Hash_Fn, true>
151 template<typename Key, typename Hash_Fn, typename Allocator,
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/
basic_types.hpp 53 template<typename Key, typename Mapped, typename Allocator, bool Store_Hash>
60 template<typename Key, typename Mapped, typename Allocator>
61 struct value_type_base<Key, Mapped, Allocator, false>
63 typedef typename Allocator::template rebind<Mapped>::other mapped_type_allocator;
70 typedef typename Allocator::template rebind<std::pair<const Key, Mapped> >::other value_type_allocator;
87 template<typename Key, typename Mapped, typename Allocator>
88 struct value_type_base<Key, Mapped, Allocator, true>
90 typedef typename Allocator::template rebind<Mapped>::other mapped_type_allocator;
97 typedef typename Allocator::template rebind<std::pair<const Key, Mapped> >::other value_type_allocator;
107 typename Allocator::size_type m_hash
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/hash_fn/
ranged_hash_fn.hpp 53 template<typename Key, typename Hash_Fn, typename Allocator,
58 template<typename Key, typename Hash_Fn, typename Allocator, \
62 ranged_hash_fn<Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
69 template<typename Key, typename Hash_Fn, typename Allocator,
71 class ranged_hash_fn< Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
75 typedef typename Allocator::size_type size_type;
78 typedef typename Allocator::template rebind< Key>::other key_allocator;
140 template<typename Key, typename Hash_Fn, typename Allocator, \
144 ranged_hash_fn<Key,Hash_Fn, Allocator, Comb_Hash_Fn, true>
151 template<typename Key, typename Hash_Fn, typename Allocator,
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/
basic_types.hpp 53 template<typename Key, typename Mapped, typename Allocator, bool Store_Hash>
60 template<typename Key, typename Mapped, typename Allocator>
61 struct value_type_base<Key, Mapped, Allocator, false>
63 typedef typename Allocator::template rebind<Mapped>::other mapped_type_allocator;
70 typedef typename Allocator::template rebind<std::pair<const Key, Mapped> >::other value_type_allocator;
87 template<typename Key, typename Mapped, typename Allocator>
88 struct value_type_base<Key, Mapped, Allocator, true>
90 typedef typename Allocator::template rebind<Mapped>::other mapped_type_allocator;
97 typedef typename Allocator::template rebind<std::pair<const Key, Mapped> >::other value_type_allocator;
107 typename Allocator::size_type m_hash
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/hash_fn/
ranged_hash_fn.hpp 53 template<typename Key, typename Hash_Fn, typename Allocator,
58 template<typename Key, typename Hash_Fn, typename Allocator, \
62 ranged_hash_fn<Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
69 template<typename Key, typename Hash_Fn, typename Allocator,
71 class ranged_hash_fn< Key, Hash_Fn, Allocator, Comb_Hash_Fn, false>
75 typedef typename Allocator::size_type size_type;
78 typedef typename Allocator::template rebind< Key>::other key_allocator;
140 template<typename Key, typename Hash_Fn, typename Allocator, \
144 ranged_hash_fn<Key,Hash_Fn, Allocator, Comb_Hash_Fn, true>
151 template<typename Key, typename Hash_Fn, typename Allocator,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PODArena.h 47 // The arena is configured with an allocator, which is responsible
49 class Allocator : public RefCounted<Allocator> {
54 virtual ~Allocator() { }
55 friend class WTF::RefCounted<Allocator>;
58 // The Arena's default allocator, which uses fastMalloc and
60 class FastMallocAllocator : public Allocator {
80 // Creates a new PODArena configured with the given Allocator.
81 static PassRefPtr<PODArena> create(PassRefPtr<Allocator> allocator)
    [all...]
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 11 #include "llvm/Support/Allocator.h"
52 BumpPtrAllocator Allocator;
56 Object *A1 = DUT.allocate(Cap, Allocator);
60 Object *A2 = DUT.allocate(Cap, Allocator);
64 Object *A3 = DUT.allocate(Cap, Allocator);
84 Object *A2x = DUT.allocate(Cap, Allocator);
93 Object *A3x = DUT.allocate(Cap, Allocator);
95 Object *A1x = DUT.allocate(Cap, Allocator);
97 Object *A2y = DUT.allocate(Cap, Allocator);
101 Object *A4 = DUT.allocate(Cap, Allocator);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/
types.pass.cpp 14 // template <class T, class Allocator = allocator<T> >
19 // typedef Allocator allocator_type;
40 template <class T, class Allocator>
44 typedef std::vector<T, Allocator> C;
47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), "");
48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), "");
49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), "");
50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "");
51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "")
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binomial_heap_base_/
binomial_heap_base_.hpp 62 template<typename Value_Type, class Cmp_Fn, class Allocator>
65 binomial_heap_base_<Value_Type, Cmp_Fn, Allocator>
70 typename Allocator::size_type, \
71 Allocator, false>
75 typename Allocator::size_type, Allocator>
81 template<typename Value_Type, class Cmp_Fn, class Allocator>
97 typedef typename Allocator::size_type size_type;
99 typedef typename Allocator::difference_type difference_type;
104 typename Allocator::template rebind
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/bin_search_tree_/
node_iterators.hpp 56 Allocator>
62 class Allocator>
69 typename Allocator::template rebind<
95 typename Allocator::template rebind<
162 Allocator>
168 class Allocator>
176 typename Allocator::template rebind<

Completed in 3617 milliseconds

<<11121314151617181920>>