Searched refs:zone_allocator (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/zone/
H A Dzone-allocator.h15 class zone_allocator { class in namespace:v8::internal
26 typedef zone_allocator<O> other;
31 zone_allocator() : zone_(nullptr) { UNREACHABLE(); } function in class:v8::internal::zone_allocator
33 explicit zone_allocator(Zone* zone) throw() : zone_(zone) {} function in class:v8::internal::zone_allocator
34 explicit zone_allocator(const zone_allocator& other) throw() function in class:v8::internal::zone_allocator
37 zone_allocator(const zone_allocator<U>& other) throw() : zone_(other.zone_) {} function in class:v8::internal::zone_allocator
39 friend class zone_allocator;
64 bool operator==(zone_allocator cons
[all...]
H A Dzone-containers.h24 class ZoneVector : public std::vector<T, zone_allocator<T>> {
28 : std::vector<T, zone_allocator<T>>(zone_allocator<T>(zone)) {}
33 : std::vector<T, zone_allocator<T>>(size, T(), zone_allocator<T>(zone)) {}
38 : std::vector<T, zone_allocator<T>>(size, def, zone_allocator<T>(zone)) {}
44 : std::vector<T, zone_allocator<T>>(first, last,
45 zone_allocator<T>(zone)) {}
51 class ZoneDeque : public std::deque<T, zone_allocator<
[all...]
/external/v8/src/parsing/
H A Dparse-info.cc18 ParseInfo::ParseInfo(AccountingAllocator* zone_allocator) argument
19 : zone_(std::make_shared<Zone>(zone_allocator, ZONE_NAME)),
H A Dparse-info.h36 explicit ParseInfo(AccountingAllocator* zone_allocator);
/external/v8/src/compiler/
H A Dinstruction.h1439 zone_allocator<std::pair<const int, Constant> > > ConstantMap;
/external/v8/src/
H A Dobjects.cc19574 zone_allocator<Handle<String>>> {
19578 zone_allocator<Handle<String>>>(
19580 zone_allocator<Handle<String>>(zone)) {}
19586 zone_allocator<Handle<Module>>> {
19590 zone_allocator<Handle<Module>>>(
19592 zone_allocator<Handle<Module>>(zone)) {}
19598 zone_allocator<std::pair<const Handle<String>, Handle<Object>>>> {
19603 zone_allocator<std::pair<const Handle<String>, Handle<Object>>>>(
19605 zone_allocator<std::pair<const Handle<String>, Handle<Object>>>(
19614 ModuleHandleEqual, zone_allocator<st
[all...]

Completed in 519 milliseconds