Home
last modified time | relevance | path

Searched defs:zone_allocator (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/zone/
Dzone-allocator.h31 zone_allocator() : zone_(nullptr) { UNREACHABLE(); } in zone_allocator() function
33 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {} in zone_allocator() function
34 explicit zone_allocator(const zone_allocator& other) throw() in zone_allocator() function
37 zone_allocator(const zone_allocator<U>& other) throw() : zone_(other.zone_) {} in zone_allocator() function
39 friend class zone_allocator; variable
/external/v8/src/parsing/
Dparse-info.cc18 ParseInfo::ParseInfo(AccountingAllocator* zone_allocator) in ParseInfo()