Home | History | Annotate | Download | only in results

Lines Matching refs:callbackInfo

95 template<class CallbackInfo, class Wrappable>
96 inline v8::Handle<v8::Value> toV8Fast(TestTypedefs* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
99 return v8::Null(callbackInfo.GetIsolate());
100 v8::Handle<v8::Object> wrapper = DOMDataStore::getWrapperFast<V8TestTypedefs>(impl, callbackInfo, wrappable);
103 return wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
112 template<class CallbackInfo, class Wrappable>
113 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< TestTypedefs > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
115 return toV8Fast(impl.get(), callbackInfo, wrappable);