Home
last modified time | relevance | path

Searched refs:ScopedArenaAllocatorAdapter (Results 1 – 2 of 2) sorted by relevance

/art/runtime/base/
Dscoped_arena_containers.h41 class ScopedArenaAllocatorAdapter; variable
44 using ScopedArenaDeque = std::deque<T, ScopedArenaAllocatorAdapter<T>>;
50 using ScopedArenaVector = std::vector<T, ScopedArenaAllocatorAdapter<T>>;
53 using ScopedArenaSet = std::set<T, Comparator, ScopedArenaAllocatorAdapter<T>>;
57 SafeMap<K, V, Comparator, ScopedArenaAllocatorAdapter<std::pair<const K, V>>>;
61 std::unordered_map<K, V, Hash, KeyEqual, ScopedArenaAllocatorAdapter<std::pair<const K, V>>>;
67 class ScopedArenaAllocatorAdapter<void>
77 typedef ScopedArenaAllocatorAdapter<U> other;
80 explicit ScopedArenaAllocatorAdapter(ScopedArenaAllocator* arena_allocator,
88 ScopedArenaAllocatorAdapter(const ScopedArenaAllocatorAdapter<U>& other) in ScopedArenaAllocatorAdapter() function
[all …]
Dscoped_arena_allocator.h32 class ScopedArenaAllocatorAdapter; variable
95 friend class ScopedArenaAllocatorAdapter; variable
129 ScopedArenaAllocatorAdapter<void> Adapter(ArenaAllocKind kind = kArenaAllocSTL);
143 friend class ScopedArenaAllocatorAdapter; variable