Home | History | Annotate | Download | only in src

Lines Matching refs:Handle

23   Handle<AllocationSite> top() { return top_; }
24 Handle<AllocationSite> current() { return current_; }
26 bool ShouldCreateMemento(Handle<JSObject> object) { return false; }
35 void InitializeTraversal(Handle<AllocationSite> site) {
37 current_ = Handle<AllocationSite>::New(*top_, isolate());
42 Handle<AllocationSite> top_;
43 Handle<AllocationSite> current_;
54 Handle<AllocationSite> EnterNewScope();
55 void ExitScope(Handle<AllocationSite> site, Handle<JSObject> object);
63 AllocationSiteUsageContext(Isolate* isolate, Handle<AllocationSite> site,
69 inline Handle<AllocationSite> EnterNewScope() {
78 return Handle<AllocationSite>(*current(), isolate());
81 inline void ExitScope(Handle<AllocationSite> scope_site,
82 Handle<JSObject> object) {
88 bool ShouldCreateMemento(Handle<JSObject> object);
91 Handle<AllocationSite> top_site_;