Lines Matching defs:isolate
31 v8::Isolate* isolate, const v8::debug::ConsoleContext& consoleContext) {
33 return toProtocolString(isolate, consoleContext.name()) + "#" +
44 m_isolate(inspector->isolate()),
306 identifier = consoleContextToString(inspector->isolate(), consoleContext) +
361 toV8String(m_inspector->isolate(), String16("console.assert")));
402 consoleContextToString(inspector->isolate(), consoleContext);
420 consoleContextToString(inspector->isolate(), consoleContext);
429 consoleContextToString(inspector->isolate(), consoleContext);
591 v8::Isolate* isolate = info.GetIsolate();
592 info.GetReturnValue().Set(v8::Array::New(isolate));
599 if (!obj->GetOwnPropertyNames(isolate->GetCurrentContext()).ToLocal(&names))
606 v8::Isolate* isolate = info.GetIsolate();
607 info.GetReturnValue().Set(v8::Array::New(isolate));
614 v8::Local<v8::Context> context = isolate->GetCurrentContext();
616 v8::Local<v8::Array> values = v8::Array::New(isolate, names->Length());
759 v8::Isolate* isolate = info.GetIsolate();
760 v8::TryCatch tryCatch(isolate);
763 ->Get(isolate->GetCurrentContext(),
764 toV8StringInternalized(isolate, "prototype"))
784 v8::Isolate* isolate = info.GetIsolate();
786 info.GetReturnValue().Set(object->get(isolate->GetCurrentContext()));
788 info.GetReturnValue().Set(v8::Undefined(isolate));
794 v8::Isolate* isolate = context->GetIsolate();
795 v8::Local<v8::External> data = v8::External::New(isolate, this);
797 toV8StringInternalized(isolate, "memory"),
811 v8::Isolate* isolate = context->GetIsolate();
812 v8::Local<v8::External> data = v8::External::New(isolate, this);
814 v8::MicrotasksScope microtasksScope(isolate,
818 ->Set(context, toV8StringInternalized(isolate, "scheduleAsyncTask"),
826 ->Set(context, toV8StringInternalized(isolate, "startAsyncTask"),
834 ->Set(context, toV8StringInternalized(isolate, "finishAsyncTask"),
842 ->Set(context, toV8StringInternalized(isolate, "cancelAsyncTask"),
853 v8::Isolate* isolate = context->GetIsolate();
854 v8::MicrotasksScope microtasksScope(isolate,
857 v8::Local<v8::Object> commandLineAPI = v8::Object::New(isolate);
859 commandLineAPI->SetPrototype(context, v8::Null(isolate)).FromMaybe(false);
864 v8::ArrayBuffer::New(isolate, sizeof(CommandLineAPIData));