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

  /external/v8/src/
zone-inl.h 43 ASSERT(ZoneScope::nesting() > 0);
126 ZoneScope::ZoneScope(Isolate* isolate, ZoneScopeMode mode)
132 bool ZoneScope::ShouldDeleteOnExit() {
137 int ZoneScope::nesting() {
zone.cc 80 ZoneScope::~ZoneScope() {
  /external/chromium_org/v8/src/
zone.h 159 // The ZoneScope is used to automatically call DeleteAll() on a
160 // Zone when the ZoneScope is destroyed (i.e. goes out of scope)
161 struct ZoneScope {
163 explicit ZoneScope(Zone* zone) : zone_(zone) { }
164 ~ZoneScope() { zone_->DeleteAll(); }

Completed in 185 milliseconds