Lines Matching defs:callbackInfo

67 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceConstructor3* impl)
70 v8SetReturnValueNull(callbackInfo);
73 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceConstructor3>(callbackInfo.GetReturnValue(), impl))
75 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
76 v8SetReturnValue(callbackInfo, wrapper);
80 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceConstructor3* impl)
82 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
84 v8SetReturnValueNull(callbackInfo);
87 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceConstructor3>(callbackInfo.GetReturnValue(), impl))
89 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
90 v8SetReturnValue(callbackInfo, wrapper);
94 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor3* impl, Wrappable* wrappable)
97 v8SetReturnValueNull(callbackInfo);
100 if (DOMDataStore::setReturnValueFromWrapperFast<V8TestInterfaceConstructor3>(callbackInfo.GetReturnValue(), impl, callbackInfo.Holder(), wrappable))
102 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
103 v8SetReturnValue(callbackInfo, wrapper);
112 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor3> impl)
114 v8SetReturnValue(callbackInfo, impl.get());
118 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor3> impl)
120 v8SetReturnValueForMainWorld(callbackInfo, impl.get());
124 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor3> impl, Wrappable* wrappable)
126 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);