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

/external/chromium_org/v8/src/
H A Dhandles-inl.h19 location_ = HandleScope::CreateHandle(obj->GetIsolate(), obj);
25 location_ = HandleScope::CreateHandle(isolate, obj);
85 HandleScope::HandleScope(Isolate* isolate) { function in class:v8::internal::HandleScope
94 HandleScope::~HandleScope() {
99 void HandleScope::CloseScope(Isolate* isolate,
119 Handle<T> HandleScope::CloseAndEscape(Handle<T> handle_value) {
138 T** HandleScope::CreateHandle(Isolate* isolate, T* value) {
H A Dhandles.h79 // Handles are only valid within a HandleScope.
181 class HandleScope { class in namespace:v8::internal
183 explicit inline HandleScope(Isolate* isolate);
185 inline ~HandleScope();
201 // Closes the HandleScope (invalidating all handles
202 // created in the scope of the HandleScope) and returns
212 HandleScope(const HandleScope&);
213 void operator=(const HandleScope&);
234 friend class v8::HandleScope;
[all...]
H A Dapi.cc546 HandleScope::HandleScope(Isolate* isolate) { function in class:v8::HandleScope
551 void HandleScope::Initialize(Isolate* isolate) {
554 // place, so we do it only here: Without a HandleScope, an embedder can do
558 "HandleScope::HandleScope",
568 HandleScope::~HandleScope() {
569 i::HandleScope::CloseScope(isolate_, prev_next_, prev_limit_);
573 int HandleScope
[all...]
/external/chromium_org/v8/include/
H A Dv8.h312 friend class HandleScope;
387 friend class HandleScope;
437 * a Local handle only lives as long as the HandleScope in which it was
802 class V8_EXPORT HandleScope { class in namespace:v8
804 HandleScope(Isolate* isolate);
806 ~HandleScope();
818 V8_INLINE HandleScope() {} function in class:v8::HandleScope
832 HandleScope(const HandleScope&);
833 void operator=(const HandleScope
[all...]

Completed in 114 milliseconds