HomeSort by relevance Sort by last modified time
    Searched defs:allocator_type (Results 1 - 20 of 20) sorted by null

  /external/libcxx/test/utilities/memory/allocator.uses/allocator.uses.trait/
uses_allocator.pass.cpp 23 typedef int allocator_type; typedef in struct:B
  /external/clang/test/SemaTemplate/
exception-spec-crash.cpp 16 typedef _Allocator allocator_type; typedef in class:basic_string
18 noexcept(is_nothrow_move_constructible<allocator_type>::value);
  /external/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/
ctor_queue_alloc.pass.cpp 37 typedef test_allocator<int> allocator_type; typedef in struct:test
40 explicit test(const allocator_type& a) : base(a) {}
41 test(const container_type& c, const allocator_type& a) : base(c, a) {}
42 test(const test& q, const allocator_type& a) : base(q, a) {}
43 allocator_type get_allocator() {return this->c.get_allocator();}
ctor_rcontainer_alloc.pass.cpp 40 typedef test_allocator<MoveOnly> allocator_type; typedef in struct:test
43 explicit test(const allocator_type& a) : base(a) {}
44 test(const container_type& c, const allocator_type& a) : base(c, a) {}
45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
47 allocator_type get_allocator() {return this->c.get_allocator();}
ctor_rqueue_alloc.pass.cpp 40 typedef test_allocator<MoveOnly> allocator_type; typedef in struct:test
43 explicit test(const allocator_type& a) : base(a) {}
44 test(const container_type& c, const allocator_type& a) : base(c, a) {}
45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
47 allocator_type get_allocator() {return this->c.get_allocator();}
  /external/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_copy_alloc.pass.cpp 37 typedef test_allocator<int> allocator_type; typedef in struct:test
40 explicit test(const allocator_type& a) : base(a) {}
41 test(const container_type& c, const allocator_type& a) : base(c, a) {}
42 test(const test& q, const allocator_type& a) : base(q, a) {}
43 allocator_type get_allocator() {return this->c.get_allocator();}
ctor_rcontainer_alloc.pass.cpp 40 typedef test_allocator<MoveOnly> allocator_type; typedef in struct:test
43 explicit test(const allocator_type& a) : base(a) {}
44 test(const container_type& c, const allocator_type& a) : base(c, a) {}
45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
47 allocator_type get_allocator() {return this->c.get_allocator();}
ctor_rqueue_alloc.pass.cpp 40 typedef test_allocator<MoveOnly> allocator_type; typedef in struct:test
43 explicit test(const allocator_type& a) : base(a) {}
44 test(const container_type& c, const allocator_type& a) : base(c, a) {}
45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
47 allocator_type get_allocator() {return this->c.get_allocator();}
  /external/libcxx/test/utilities/tuple/tuple.tuple/
alloc_first.h 21 typedef A1<int> allocator_type; typedef in struct:alloc_first
alloc_last.h 21 typedef A1<int> allocator_type; typedef in struct:alloc_last
  /external/clang/test/CXX/except/except.spec/
canonical.cpp 22 typedef _Allocator allocator_type; typedef in class:std::basic_string
25 noexcept(_is_nothrow_constructible<allocator_type>::value);
48 basic_string<T, _Traits, _Allocator>::basic_string() noexcept(_is_nothrow_constructible<allocator_type>::value) {}
  /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/utilities/allocator.adaptor/allocator.adaptor.members/
construct.pass.cpp 29 typedef A1<B> allocator_type; typedef in struct:B
31 explicit B(std::allocator_arg_t, const allocator_type& a, int i)
45 typedef std::scoped_allocator_adaptor<A2<C>> allocator_type; typedef in struct:C
47 explicit C(std::allocator_arg_t, const allocator_type& a, int i)
61 typedef std::scoped_allocator_adaptor<A2<D>> allocator_type; typedef in struct:D
63 explicit D(int i, int j, const allocator_type& a)
78 typedef std::scoped_allocator_adaptor<A1<E>> allocator_type; typedef in struct:E
80 explicit E(int i, int j, const allocator_type& a)
95 typedef std::scoped_allocator_adaptor<A2<F>> allocator_type; typedef in struct:F
103 explicit F(int i, int j, const allocator_type& a
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/lib/
bucket.py 17 def __init__(self, stacktrace, allocator_type, typeinfo, typeinfo_name):
19 self._allocator_type = allocator_type
78 def allocator_type(self): member in class:Bucket
policy.py 38 allocator_type,
46 self._allocator_type = allocator_type
80 def allocator_type(self): member in class:Rule
144 assert not bucket or bucket.allocator_type == 'malloc'
158 if (rule.allocator_type == 'malloc' and
192 assert not bucket or bucket.allocator_type == 'mmap'
202 if (rule.allocator_type == 'mmap' and
240 if (rule.allocator_type == 'unhooked' and
313 rule['allocator'], # allocator_type
  /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())
  /art/runtime/mirror/
object_array-inl.h 36 int32_t length, gc::AllocatorType allocator_type) {
38 sizeof(HeapReference<Object>), allocator_type);
251 gc::AllocatorType allocator_type = heap->IsMovableObject(this) ? heap->GetCurrentAllocator() : local
253 ObjectArray<T>* new_array = Alloc(self, GetClass(), new_length, allocator_type);
  /art/runtime/
safe_map.h 39 typedef typename ::std::map<K, V, Comparator, Allocator>::allocator_type allocator_type; typedef in class:art::SafeMap
47 explicit SafeMap(const key_compare& cmp, const allocator_type& allocator = allocator_type())
56 allocator_type get_allocator() const { return map_.get_allocator(); }
  /external/chromium_org/base/memory/
scoped_vector.h 22 typedef typename std::vector<T*>::allocator_type allocator_type; typedef in class:ScopedVector
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
scoped_vector.h 32 typedef typename std::vector<T*>::allocator_type allocator_type; typedef in class:webrtc::ScopedVector

Completed in 959 milliseconds