Home
last modified time | relevance | path

Searched refs:zone_allocator (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dzone-allocator.h16 class zone_allocator {
26 typedef zone_allocator<O> other;
29 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {} in zone_allocator() function
30 explicit zone_allocator(const zone_allocator& other) throw() in zone_allocator() function
32 template<typename U> zone_allocator(const zone_allocator<U>& other) throw() in zone_allocator() function
34 template<typename U> friend class zone_allocator; variable
53 bool operator==(zone_allocator const& other) {
56 bool operator!=(zone_allocator const& other) {
61 zone_allocator();
65 typedef zone_allocator<bool> ZoneBoolAllocator;
[all …]
Dzone-containers.h20 class ZoneVector : public std::vector<T, zone_allocator<T> > {
24 : std::vector<T, zone_allocator<T> >(zone_allocator<T>(zone)) {} in ZoneVector()
29 : std::vector<T, zone_allocator<T> >(size, def, zone_allocator<T>(zone)) { in ZoneVector()
36 class ZoneDeque : public std::deque<T, zone_allocator<T> > {
39 : std::deque<T, zone_allocator<T> >(zone_allocator<T>(zone)) {} in ZoneDeque()
45 class ZoneQueue : public std::queue<T, std::deque<T, zone_allocator<T> > > {
49 : std::queue<T, std::deque<T, zone_allocator<T> > >( in ZoneQueue()
50 std::deque<T, zone_allocator<T> >(zone_allocator<T>(zone))) {} in ZoneQueue()
Dlithium.h683 typedef zone_allocator<Handle<Map> > MapAllocator;
/external/v8/src/compiler/
Dnode.h68 typedef std::set<Node*, std::less<Node*>, zone_allocator<Node*> > NodeSet;
Dinstruction.h789 zone_allocator<std::pair<int, Constant> > > ConstantMap;