Searched defs:v8SetReturnValueFast (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8ArrayBufferCustom.h123 inline void v8SetReturnValueFast(const CallbackInfo& info, ArrayBuffer* impl, Wrappable* wrappable) function in namespace:blink
153 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr< ArrayBuffer > impl, Wrappable* wrappable) function in namespace:blink
155 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8DataViewCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, DataView* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<DataView>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<DataView> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Float32ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Float32Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Float32Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr< Float32Array > impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Float64ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Float64Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Float64Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Float64Array> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Int16ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Int16Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Int16Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Int16Array> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Int32ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Int32Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Int32Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Int32Array> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Int8ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Int8Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Int8Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Int8Array> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Uint16ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Uint16Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Uint16Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Uint16Array> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Uint32ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Uint32Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Uint32Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Uint32Array> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Uint8ArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Uint8Array* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Uint8Array>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr< Uint8Array > impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
H A DV8Uint8ClampedArrayCustom.h85 inline void v8SetReturnValueFast(const CallbackInfo& info, Uint8ClampedArray* impl, Wrappable* wrappable) function in namespace:blink
87 V8TypedArray<Uint8ClampedArray>::v8SetReturnValueFast(info, impl, wrappable);
108 inline void v8SetReturnValueFast(const CallbackInfo& info, PassRefPtr<Uint8ClampedArray> impl, Wrappable* wrappable) function in namespace:blink
110 v8SetReturnValueFast(info, impl.get(), wrappable);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterface.h78 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceImplementation* impl, Wrappable*) function in namespace:blink
101 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceImplementation> impl, Wrappable* wrappable) function in namespace:blink
103 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterfaceNotScriptWrappable.h92 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceNotScriptWrappable* impl, Wrappable* wrappable) function in namespace:blink
122 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceNotScriptWrappable> impl, Wrappable* wrappable) function in namespace:blink
124 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestObject.h134 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestObject* impl, Wrappable* wrappable) function in namespace:blink
164 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestObject> impl, Wrappable* wrappable) function in namespace:blink
166 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8SVGTestInterface.h93 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, SVGTestInterface* impl, Wrappable* wrappable) function in namespace:blink
123 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<SVGTestInterface> impl, Wrappable* wrappable) function in namespace:blink
125 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestException.h93 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestException* impl, Wrappable* wrappable) function in namespace:blink
123 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestException> impl, Wrappable* wrappable) function in namespace:blink
125 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterface2.h95 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface2* impl, Wrappable* wrappable) function in namespace:blink
125 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface2> impl, Wrappable* wrappable) function in namespace:blink
127 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterface3.h102 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface3* impl, Wrappable* wrappable) function in namespace:blink
132 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface3> impl, Wrappable* wrappable) function in namespace:blink
134 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterfaceCheckSecurity.h93 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceCheckSecurity* impl, Wrappable* wrappable) function in namespace:blink
123 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceCheckSecurity> impl, Wrappable* wrappable) function in namespace:blink
125 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterfaceConstructor.h100 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor* impl, Wrappable* wrappable) function in namespace:blink
130 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor> impl, Wrappable* wrappable) function in namespace:blink
132 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterfaceConstructor2.h94 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor2* impl, Wrappable* wrappable) function in namespace:blink
124 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor2> impl, Wrappable* wrappable) function in namespace:blink
126 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterfaceConstructor3.h94 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor3* impl, Wrappable* wrappable) function in namespace:blink
124 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor3> impl, Wrappable* wrappable) function in namespace:blink
126 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
H A DV8TestInterfaceConstructor4.h94 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceConstructor4* impl, Wrappable* wrappable) function in namespace:blink
124 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterfaceConstructor4> impl, Wrappable* wrappable) function in namespace:blink
126 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/modules/
H A DV8TestInterface5.h70 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface5Implementation* impl, Wrappable*) function in namespace:blink
93 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface5Implementation> impl, Wrappable* wrappable) function in namespace:blink
95 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dinterface.h195 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{cpp_class}}* impl, Wrappable*) function
252 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{cpp_class}}* impl, Wrappable* wrappable) function
283 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{pass_cpp_type}} impl, Wrappable* wrappable) function
285 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);

Completed in 301 milliseconds

12