Searched defs:callbackInfo (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Ddictionary_v8.h26 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
28 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
H A Dinterface.h183 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
185 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
189 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
191 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
195 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{cpp_class}}* impl, Wrappable*) argument
197 v8SetReturnValue(callbackInfo, toV
225 v8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
238 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
252 v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{cpp_class}}* impl, Wrappable* wrappable) argument
271 v8SetReturnValue(const CallbackInfo& callbackInfo, {{pass_cpp_type}} impl) argument
277 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, {{pass_cpp_type}} impl) argument
283 v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{pass_cpp_type}} impl, Wrappable* wrappable) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestDictionary.h26 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestDictionary* impl) argument
28 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
H A DV8TestInterface.h66 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceImplementation* impl) argument
68 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
72 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceImplementation* impl) argument
74 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
78 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceImplementation* impl, Wrappable*) argument
80 v8SetReturnValue(callbackInfo, toV
89 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceImplementation> impl) argument
95 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceImplementation> impl) argument
101 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceImplementation> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceNotScriptWrappable.h65 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceNotScriptWrappable* impl) argument
68 v8SetReturnValueNull(callbackInfo);
71 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceNotScriptWrappable>(callbackInfo.GetReturnValue(), impl))
73 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
74 v8SetReturnValue(callbackInfo, wrapper);
78 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceNotScriptWrappable* impl) argument
80 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
82 v8SetReturnValueNull(callbackInfo);
85 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceNotScriptWrappable>(callbackInfo
92 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceNotScriptWrappable* impl, Wrappable* wrappable) argument
110 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNotScriptWrappable> impl) argument
116 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNotScriptWrappable> impl) argument
122 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNotScriptWrappable> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestObject.h107 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestObject* impl) argument
110 v8SetReturnValueNull(callbackInfo);
113 if (DOMDataStore::setReturnValueFromWrapper<V8TestObject>(callbackInfo.GetReturnValue(), impl))
115 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
116 v8SetReturnValue(callbackInfo, wrapper);
120 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestObject* impl) argument
122 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
124 v8SetReturnValueNull(callbackInfo);
127 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestObject>(callbackInfo
134 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestObject* impl, Wrappable* wrappable) argument
152 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestObject> impl) argument
158 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestObject> impl) argument
164 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestObject> impl, Wrappable* wrappable) argument
[all...]
H A DV8SVGTestInterface.h66 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, SVGTestInterface* impl) argument
69 v8SetReturnValueNull(callbackInfo);
72 if (DOMDataStore::setReturnValueFromWrapper<V8SVGTestInterface>(callbackInfo.GetReturnValue(), impl))
74 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
75 v8SetReturnValue(callbackInfo, wrapper);
79 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, SVGTestInterface* impl) argument
81 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
83 v8SetReturnValueNull(callbackInfo);
86 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8SVGTestInterface>(callbackInfo
93 v8SetReturnValueFast(const CallbackInfo& callbackInfo, SVGTestInterface* impl, Wrappable* wrappable) argument
111 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<SVGTestInterface> impl) argument
117 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<SVGTestInterface> impl) argument
123 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<SVGTestInterface> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestException.h66 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestException* impl) argument
69 v8SetReturnValueNull(callbackInfo);
72 if (DOMDataStore::setReturnValueFromWrapper<V8TestException>(callbackInfo.GetReturnValue(), impl))
74 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
75 v8SetReturnValue(callbackInfo, wrapper);
79 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestException* impl) argument
81 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
83 v8SetReturnValueNull(callbackInfo);
86 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestException>(callbackInfo
93 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestException* impl, Wrappable* wrappable) argument
111 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestException> impl) argument
117 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestException> impl) argument
123 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestException> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterface2.h68 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterface2* impl) argument
71 v8SetReturnValueNull(callbackInfo);
74 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterface2>(callbackInfo.GetReturnValue(), impl))
76 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
77 v8SetReturnValue(callbackInfo, wrapper);
81 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterface2* impl) argument
83 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
85 v8SetReturnValueNull(callbackInfo);
88 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterface2>(callbackInfo
95 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface2* impl, Wrappable* wrappable) argument
113 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface2> impl) argument
119 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface2> impl) argument
125 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface2> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterface3.h75 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterface3* impl) argument
78 v8SetReturnValueNull(callbackInfo);
81 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterface3>(callbackInfo.GetReturnValue(), impl))
83 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
84 v8SetReturnValue(callbackInfo, wrapper);
88 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterface3* impl) argument
90 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
92 v8SetReturnValueNull(callbackInfo);
95 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterface3>(callbackInfo
102 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface3* impl, Wrappable* wrappable) argument
120 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface3> impl) argument
126 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface3> impl) argument
132 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface3> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceCheckSecurity.h66 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceCheckSecurity* impl) argument
69 v8SetReturnValueNull(callbackInfo);
72 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceCheckSecurity>(callbackInfo.GetReturnValue(), impl))
74 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
75 v8SetReturnValue(callbackInfo, wrapper);
79 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceCheckSecurity* impl) argument
81 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
83 v8SetReturnValueNull(callbackInfo);
86 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceCheckSecurity>(callbackInfo
93 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceCheckSecurity* impl, Wrappable* wrappable) argument
111 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceCheckSecurity> impl) argument
117 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceCheckSecurity> impl) argument
123 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceCheckSecurity> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceConstructor.h73 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceConstructor* impl) argument
76 v8SetReturnValueNull(callbackInfo);
79 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceConstructor>(callbackInfo.GetReturnValue(), impl))
81 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
82 v8SetReturnValue(callbackInfo, wrapper);
86 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceConstructor* impl) argument
88 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
90 v8SetReturnValueNull(callbackInfo);
93 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceConstructor>(callbackInfo
100 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor* impl, Wrappable* wrappable) argument
118 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor> impl) argument
124 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor> impl) argument
130 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceConstructor2.h67 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceConstructor2* impl) argument
70 v8SetReturnValueNull(callbackInfo);
73 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceConstructor2>(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, TestInterfaceConstructor2* impl) argument
82 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
84 v8SetReturnValueNull(callbackInfo);
87 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceConstructor2>(callbackInfo
94 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor2* impl, Wrappable* wrappable) argument
112 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor2> impl) argument
118 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor2> impl) argument
124 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor2> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceConstructor3.h67 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceConstructor3* impl) argument
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) argument
82 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
84 v8SetReturnValueNull(callbackInfo);
87 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceConstructor3>(callbackInfo
94 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor3* impl, Wrappable* wrappable) argument
112 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor3> impl) argument
118 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor3> impl) argument
124 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor3> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceConstructor4.h67 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceConstructor4* impl) argument
70 v8SetReturnValueNull(callbackInfo);
73 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceConstructor4>(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, TestInterfaceConstructor4* impl) argument
82 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
84 v8SetReturnValueNull(callbackInfo);
87 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceConstructor4>(callbackInfo
94 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor4* impl, Wrappable* wrappable) argument
112 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor4> impl) argument
118 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor4> impl) argument
124 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor4> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceCustomConstructor.h68 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceCustomConstructor* impl) argument
71 v8SetReturnValueNull(callbackInfo);
74 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceCustomConstructor>(callbackInfo.GetReturnValue(), impl))
76 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
77 v8SetReturnValue(callbackInfo, wrapper);
81 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceCustomConstructor* impl) argument
83 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
85 v8SetReturnValueNull(callbackInfo);
88 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceCustomConstructor>(callbackInfo
95 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceCustomConstructor* impl, Wrappable* wrappable) argument
113 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceCustomConstructor> impl) argument
119 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceCustomConstructor> impl) argument
125 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceCustomConstructor> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceDocument.h73 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceDocument* impl) argument
76 v8SetReturnValueNull(callbackInfo);
79 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceDocument>(callbackInfo.GetReturnValue(), impl))
81 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
82 v8SetReturnValue(callbackInfo, wrapper);
86 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceDocument* impl) argument
88 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
90 v8SetReturnValueNull(callbackInfo);
93 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceDocument>(callbackInfo
100 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceDocument* impl, Wrappable* wrappable) argument
118 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceDocument> impl) argument
124 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceDocument> impl) argument
130 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceDocument> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceEmpty.h66 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceEmpty* impl) argument
69 v8SetReturnValueNull(callbackInfo);
72 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceEmpty>(callbackInfo.GetReturnValue(), impl))
74 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
75 v8SetReturnValue(callbackInfo, wrapper);
79 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceEmpty* impl) argument
81 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
83 v8SetReturnValueNull(callbackInfo);
86 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceEmpty>(callbackInfo
93 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceEmpty* impl, Wrappable* wrappable) argument
111 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceEmpty> impl) argument
117 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceEmpty> impl) argument
123 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceEmpty> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceEventConstructor.h74 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceEventConstructor* impl) argument
77 v8SetReturnValueNull(callbackInfo);
80 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceEventConstructor>(callbackInfo.GetReturnValue(), impl))
82 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
83 v8SetReturnValue(callbackInfo, wrapper);
87 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceEventConstructor* impl) argument
89 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
91 v8SetReturnValueNull(callbackInfo);
94 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceEventConstructor>(callbackInfo
101 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceEventConstructor* impl, Wrappable* wrappable) argument
119 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl) argument
125 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl) argument
131 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceEventTarget.h80 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceEventTarget* impl) argument
83 v8SetReturnValueNull(callbackInfo);
86 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceEventTarget>(callbackInfo.GetReturnValue(), impl))
88 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
89 v8SetReturnValue(callbackInfo, wrapper);
93 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceEventTarget* impl) argument
95 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
97 v8SetReturnValueNull(callbackInfo);
100 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceEventTarget>(callbackInfo
107 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceEventTarget* impl, Wrappable* wrappable) argument
125 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventTarget> impl) argument
131 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventTarget> impl) argument
137 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceEventTarget> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceGarbageCollected.h71 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceGarbageCollected* impl) argument
74 v8SetReturnValueNull(callbackInfo);
77 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceGarbageCollected>(callbackInfo.GetReturnValue(), impl))
79 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
80 v8SetReturnValue(callbackInfo, wrapper);
84 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceGarbageCollected* impl) argument
86 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
88 v8SetReturnValueNull(callbackInfo);
91 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceGarbageCollected>(callbackInfo
98 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceGarbageCollected* impl, Wrappable* wrappable) argument
116 v8SetReturnValue(const CallbackInfo& callbackInfo, RawPtr<TestInterfaceGarbageCollected> impl) argument
122 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, RawPtr<TestInterfaceGarbageCollected> impl) argument
128 v8SetReturnValueFast(const CallbackInfo& callbackInfo, RawPtr<TestInterfaceGarbageCollected> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceNamedConstructor.h73 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceNamedConstructor* impl) argument
76 v8SetReturnValueNull(callbackInfo);
79 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceNamedConstructor>(callbackInfo.GetReturnValue(), impl))
81 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
82 v8SetReturnValue(callbackInfo, wrapper);
86 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceNamedConstructor* impl) argument
88 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
90 v8SetReturnValueNull(callbackInfo);
93 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceNamedConstructor>(callbackInfo
100 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceNamedConstructor* impl, Wrappable* wrappable) argument
118 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNamedConstructor> impl) argument
124 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNamedConstructor> impl) argument
130 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNamedConstructor> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceNamedConstructor2.h72 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceNamedConstructor2* impl) argument
75 v8SetReturnValueNull(callbackInfo);
78 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceNamedConstructor2>(callbackInfo.GetReturnValue(), impl))
80 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
81 v8SetReturnValue(callbackInfo, wrapper);
85 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceNamedConstructor2* impl) argument
87 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
89 v8SetReturnValueNull(callbackInfo);
92 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceNamedConstructor2>(callbackInfo
99 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceNamedConstructor2* impl, Wrappable* wrappable) argument
117 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNamedConstructor2> impl) argument
123 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNamedConstructor2> impl) argument
129 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNamedConstructor2> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterfaceNode.h73 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceNode* impl) argument
76 v8SetReturnValueNull(callbackInfo);
79 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceNode>(callbackInfo.GetReturnValue(), impl))
81 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
82 v8SetReturnValue(callbackInfo, wrapper);
86 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceNode* impl) argument
88 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
90 v8SetReturnValueNull(callbackInfo);
93 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceNode>(callbackInfo
100 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceNode* impl, Wrappable* wrappable) argument
118 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceNode> impl) argument
124 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceNode> impl) argument
130 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtrWillBeRawPtr<TestInterfaceNode> impl, Wrappable* wrappable) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/modules/
H A DV8TestInterface5.h58 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterface5Implementation* impl) argument
60 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
64 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterface5Implementation* impl) argument
66 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
70 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface5Implementation* impl, Wrappable*) argument
72 v8SetReturnValue(callbackInfo, toV
81 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface5Implementation> impl) argument
87 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface5Implementation> impl) argument
93 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface5Implementation> impl, Wrappable* wrappable) argument
[all...]

Completed in 1848 milliseconds

12