HomeSort by relevance Sort by last modified time
    Searched defs:HandleScope (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
handles-inl.h 51 location_ = HandleScope::CreateHandle(obj, GetIsolateForHandle(obj));
58 location_ = HandleScope::CreateHandle(obj, isolate);
70 HandleScope::HandleScope() {
81 HandleScope::HandleScope(Isolate* isolate) {
92 HandleScope::~HandleScope() {
96 void HandleScope::CloseScope() {
113 Handle<T> HandleScope::CloseAndEscape(Handle<T> handle_value)
    [all...]
handles.h 39 // Handles are only valid within a HandleScope.
90 inline Handle<T> EscapeFrom(v8::HandleScope* scope);
109 class HandleScope {
111 inline HandleScope();
112 explicit inline HandleScope(Isolate* isolate);
114 inline ~HandleScope();
130 // Closes the HandleScope (invalidating all handles
131 // created in the scope of the HandleScope) and returns
141 HandleScope(const HandleScope&)
    [all...]
api.cc 323 i::HandleScope::ZapRange(begin, end);
506 HandleScope::HandleScope() {
507 API_ENTRY_CHECK("HandleScope::HandleScope");
519 HandleScope::~HandleScope() {
526 void HandleScope::Leave() {
535 i::HandleScope::DeleteExtensions(isolate_);
539 i::HandleScope::ZapRange(prev_next_, prev_limit_)
    [all...]
  /external/v8/include/
v8.h 298 * a Local handle only lives as long as the HandleScope in which it was
426 class V8EXPORT HandleScope {
428 HandleScope();
430 ~HandleScope();
453 HandleScope(const HandleScope&);
454 void operator=(const HandleScope&);
478 // from the HandleScope being closed to the next top most HandleScope.
    [all...]

Completed in 418 milliseconds