HomeSort by relevance Sort by last modified time
    Searched refs:Isolate (Results 201 - 225 of 759) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 206 static bool getRangeImpl(NPObject* object, WebRange* webRange, v8::Isolate* isolate)
215 v8::HandleScope handleScope(isolate);
216 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
222 Range* native = V8Range::HasInstanceInAnyWorld(v8Object, isolate) ? V8Range::toNative(v8Object) : 0;
230 static bool getNodeImpl(NPObject* object, WebNode* webNode, v8::Isolate* isolate)
239 v8::HandleScope handleScope(isolate);
240 v8::Handle<v8::Object> v8Object = v8::Local<v8::Object>::New(isolate, v8NPObject->v8Object);
243 Node* native = V8Node::HasInstanceInAnyWorld(v8Object, isolate) ? V8Node::toNative(v8Object) : 0
327 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
389 v8::Isolate* isolate = v8::Isolate::GetCurrent(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestEvent.cpp 66 static v8::Handle<v8::FunctionTemplate> ConfigureV8TestEventTemplate(v8::Handle<v8::FunctionTemplate> desc, v8::Isolate* isolate, WrapperWorldType currentWorldType)
71 defaultSignature = V8DOMConfiguration::configureTemplate(desc, "TestEvent", V8Event::GetTemplate(isolate, currentWorldType), V8TestEvent::internalFieldCount,
73 0, 0, isolate, currentWorldType);
81 v8::Handle<v8::FunctionTemplate> V8TestEvent::GetTemplate(v8::Isolate* isolate, WrapperWorldType currentWorldType)
83 V8PerIsolateData* data = V8PerIsolateData::from(isolate);
86 return result->value.newLocal(isolate);
89 v8::HandleScope handleScope(isolate);
91 ConfigureV8TestEventTemplate(data->rawTemplate(&info, currentWorldType), isolate, currentWorldType)
    [all...]