Searched defs:HandleScope (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/
H A Dhandles-inl.h17 : location_(HandleScope::GetHandle(isolate, object)) {}
24 reinterpret_cast<T**>(HandleScope::CreateHandle(isolate, object)));
28 HandleScope::HandleScope(Isolate* isolate) { function in class:v8::internal::HandleScope
43 HandleScope::~HandleScope() {
60 void HandleScope::CloseScope(Isolate* isolate,
80 Handle<T> HandleScope::CloseAndEscape(Handle<T> handle_value) {
98 Object** HandleScope::CreateHandle(Isolate* isolate, Object* value) {
114 Object** HandleScope
[all...]
H A Dhandles.h80 // Handles are only valid within a HandleScope. When a handle is created
81 // for an object a cell is allocated in the current HandleScope.
254 class HandleScope { class in namespace:v8::internal
256 explicit inline HandleScope(Isolate* isolate);
258 inline ~HandleScope();
276 // Closes the HandleScope (invalidating all handles
277 // created in the scope of the HandleScope) and returns
292 HandleScope(const HandleScope&);
293 void operator=(const HandleScope
[all...]
H A Dapi.cc120 Nothing<T>(), i::HandleScope, false)
468 i::HandleScope scope(isolate);
488 i::HandleScope scope(isolate);
529 HandleScope scope(isolate);
566 HandleScope scope(isolate);
573 HandleScope handle_scope(isolate);
812 HandleScope::HandleScope(Isolate* isolate) { function in class:v8::HandleScope
817 void HandleScope::Initialize(Isolate* isolate) {
820 // place, so we do it only here: Without a HandleScope, a
[all...]
/external/v8/include/
H A Dv8.h328 friend class HandleScope;
469 * a Local handle only lives as long as the HandleScope in which it was
864 class V8_EXPORT HandleScope { class in namespace:v8
866 explicit HandleScope(Isolate* isolate);
868 ~HandleScope();
880 V8_INLINE HandleScope() {} function in class:v8::HandleScope
894 HandleScope(const HandleScope&);
895 void operator=(const HandleScope&);
914 * A HandleScope whic
[all...]

Completed in 212 milliseconds