Home | History | Annotate | Download | only in src

Lines Matching defs:HandleScope

76 // Handles are only valid within a HandleScope. When a handle is created
77 // for an object a cell is allocated in the current HandleScope.
250 class HandleScope {
252 explicit inline HandleScope(Isolate* isolate);
254 inline ~HandleScope();
272 // Closes the HandleScope (invalidating all handles
273 // created in the scope of the HandleScope) and returns
288 HandleScope(const HandleScope&);
289 void operator=(const HandleScope&);
310 friend class v8::HandleScope;
324 // A CanonicalHandleScope does not open a new HandleScope. It changes the
325 // existing HandleScope so that Handles created within are canonicalized.
346 friend class HandleScope;
373 // Seal off the current HandleScope so that new handles can only be created
374 // if a new HandleScope is entered.