Home | History | Annotate | Download | only in results

Lines Matching refs:callbackInfo

98 template<class CallbackInfo, class Wrappable>
99 inline v8::Handle<v8::Value> toV8Fast(Event* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
102 return v8::Null(callbackInfo.GetIsolate());
103 v8::Handle<v8::Object> wrapper = DOMDataStore::getWrapperFast<V8TestExtendedEvent>(impl, callbackInfo, wrappable);
106 return wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
115 template<class CallbackInfo, class Wrappable>
116 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Event > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
118 return toV8Fast(impl.get(), callbackInfo, wrappable);