Lines Matching refs:Handle
25 Handle<AllocationSite> top() { return top_; }
26 Handle<AllocationSite> current() { return current_; }
28 bool ShouldCreateMemento(Handle<JSObject> object) { return false; }
37 void InitializeTraversal(Handle<AllocationSite> site) {
39 current_ = Handle<AllocationSite>::New(*top_, isolate());
44 Handle<AllocationSite> top_;
45 Handle<AllocationSite> current_;
56 Handle<AllocationSite> EnterNewScope();
57 void ExitScope(Handle<AllocationSite> site, Handle<JSObject> object);
65 AllocationSiteUsageContext(Isolate* isolate, Handle<AllocationSite> site,
71 inline Handle<AllocationSite> EnterNewScope() {
80 return Handle<AllocationSite>(*current(), isolate());
83 inline void ExitScope(Handle<AllocationSite> scope_site,
84 Handle<JSObject> object) {
90 bool ShouldCreateMemento(Handle<JSObject> object);
93 Handle<AllocationSite> top_site_;