HomeSort by relevance Sort by last modified time
    Searched refs:toV8Fast (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLFormControlsCollectionCustom.cpp 52 return toV8Fast(namedItems.at(0).release(), callbackInfo, collection);
54 return toV8Fast(collection->ownerNode()->radioNodeList(name).get(), callbackInfo, collection);
V8DataViewCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(DataView* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<DataView>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< DataView > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8FileReaderCustom.cpp 46 v8SetReturnValue(info, toV8Fast(imp->arrayBufferResult(), info, imp));
V8Float32ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Float32Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Float32Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Float32Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8Float64ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Float64Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Float64Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Float64Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8HTMLAllCollectionCustom.cpp 53 return toV8Fast(namedItems.at(0).release(), callbackInfo, collection);
57 return toV8Fast(NamedNodesCollection::create(namedItems), callbackInfo, collection);
74 return toV8Fast(result.release(), callbackInfo, collection);
115 v8SetReturnValue(args, toV8Fast(node, args, imp));
V8Int16ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Int16Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Int16Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Int16Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8Int32ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Int32Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Int32Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Int32Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8Int8ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Int8Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Int8Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Int8Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8TrackEventCustom.cpp 58 v8SetReturnValue(info, toV8Fast(static_cast<TextTrack*>(track), info, trackEvent));
V8Uint16ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Uint16Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Uint16Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Uint16Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8Uint32ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Uint32Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Uint32Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Uint32Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8Uint8ArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Uint8Array* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Uint8Array>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Uint8Array > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8Uint8ClampedArrayCustom.h 82 inline v8::Handle<v8::Value> toV8Fast(Uint8ClampedArray* impl, const HolderContainer& container, Wrappable* wrappable)
84 return V8TypedArray<Uint8ClampedArray>::toV8Fast(impl, container, wrappable);
101 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Uint8ClampedArray > impl, const HolderContainer& container, Wrappable* wrappable)
103 return toV8Fast(impl.get(), container, wrappable);
V8DocumentLocationCustom.cpp 44 v8SetReturnValue(info, toV8Fast(window->location(), info, document));
V8EventCustom.cpp 50 v8SetReturnValue(info, toV8Fast(static_cast<ClipboardEvent*>(event)->clipboard(), info, event));
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 100 inline v8::Handle<v8::Value> toV8Fast({{cpp_class_name}}* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
117 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< {{cpp_class_name}} > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
119 return toV8Fast(impl.get(), callbackInfo, wrappable);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8Float64Array.h 94 inline v8::Handle<v8::Value> toV8Fast(Float64Array* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
111 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Float64Array > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
113 return toV8Fast(impl.get(), callbackInfo, wrappable);
V8TestActiveDOMObject.h 95 inline v8::Handle<v8::Value> toV8Fast(TestActiveDOMObject* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
112 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< TestActiveDOMObject > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
114 return toV8Fast(impl.get(), callbackInfo, wrappable);
V8TestEvent.h 96 inline v8::Handle<v8::Value> toV8Fast(TestEvent* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
113 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< TestEvent > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
115 return toV8Fast(impl.get(), callbackInfo, wrappable);
V8TestEventConstructor.h 97 inline v8::Handle<v8::Value> toV8Fast(TestEventConstructor* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
114 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< TestEventConstructor > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
116 return toV8Fast(impl.get(), callbackInfo, wrappable);
V8TestEventTarget.h 98 inline v8::Handle<v8::Value> toV8Fast(TestEventTarget* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
115 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< TestEventTarget > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
117 return toV8Fast(impl.get(), callbackInfo, wrappable);
V8TestException.h 95 inline v8::Handle<v8::Value> toV8Fast(TestException* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
112 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< TestException > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
114 return toV8Fast(impl.get(), callbackInfo, wrappable);
V8TestExtendedEvent.h 99 inline v8::Handle<v8::Value> toV8Fast(Event* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
116 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< Event > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
118 return toV8Fast(impl.get(), callbackInfo, wrappable);
V8TestInterfaceImplementedAs.h 95 inline v8::Handle<v8::Value> toV8Fast(RealClass* impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
112 inline v8::Handle<v8::Value> toV8Fast(PassRefPtr< RealClass > impl, const CallbackInfo& callbackInfo, Wrappable* wrappable)
114 return toV8Fast(impl.get(), callbackInfo, wrappable);

Completed in 231 milliseconds

1 2