Searched refs:JSGenericTypedArrayView (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSTypedArrays.h29 #include "JSGenericTypedArrayView.h"
35 typedef JSGenericTypedArrayView<Int8Adaptor> JSInt8Array;
36 typedef JSGenericTypedArrayView<Int16Adaptor> JSInt16Array;
37 typedef JSGenericTypedArrayView<Int32Adaptor> JSInt32Array;
38 typedef JSGenericTypedArrayView<Uint8Adaptor> JSUint8Array;
39 typedef JSGenericTypedArrayView<Uint8ClampedAdaptor> JSUint8ClampedArray;
40 typedef JSGenericTypedArrayView<Uint16Adaptor> JSUint16Array;
41 typedef JSGenericTypedArrayView<Uint32Adaptor> JSUint32Array;
42 typedef JSGenericTypedArrayView<Float32Adaptor> JSFloat32Array;
43 typedef JSGenericTypedArrayView<Float64Adapto
[all...]
H A DJSGenericTypedArrayViewInlines.h33 #include "JSGenericTypedArrayView.h"
40 JSGenericTypedArrayView<Adaptor>::JSGenericTypedArrayView( function in class:JSC::JSGenericTypedArrayView
47 JSGenericTypedArrayView<Adaptor>* JSGenericTypedArrayView<Adaptor>::create(
55 JSGenericTypedArrayView* result =
56 new (NotNull, allocateCell<JSGenericTypedArrayView>(exec->vm().heap))
57 JSGenericTypedArrayView(exec->vm(), context);
63 JSGenericTypedArrayView<Adaptor>* JSGenericTypedArrayView<Adapto
[all...]
H A DTypedArrayAdaptors.h143 template<typename Adaptor> class JSGenericTypedArrayView;
144 typedef JSGenericTypedArrayView<Int8Adaptor> JSInt8Array;
145 typedef JSGenericTypedArrayView<Int16Adaptor> JSInt16Array;
146 typedef JSGenericTypedArrayView<Int32Adaptor> JSInt32Array;
147 typedef JSGenericTypedArrayView<Uint8Adaptor> JSUint8Array;
148 typedef JSGenericTypedArrayView<Uint8ClampedAdaptor> JSUint8ClampedArray;
149 typedef JSGenericTypedArrayView<Uint16Adaptor> JSUint16Array;
150 typedef JSGenericTypedArrayView<Uint32Adaptor> JSUint32Array;
151 typedef JSGenericTypedArrayView<Float32Adaptor> JSFloat32Array;
152 typedef JSGenericTypedArrayView<Float64Adapto
[all...]
H A DJSGenericTypedArrayView.h49 // Here, 'o' points to a JSGenericTypedArrayView<int8_t>.
70 // The JSGenericTypedArrayView is templatized by an Adaptor that controls
87 class JSGenericTypedArrayView : public JSArrayBufferView { class in namespace:JSC
93 JSGenericTypedArrayView(VM&, ConstructionContext&);
96 static JSGenericTypedArrayView* create(ExecState*, Structure*, unsigned length);
97 static JSGenericTypedArrayView* createUninitialized(ExecState*, Structure*, unsigned length);
98 static JSGenericTypedArrayView* create(ExecState*, Structure*, PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
99 static JSGenericTypedArrayView* create(VM&, Structure*, PassRefPtr<typename Adaptor::ViewType> impl);
100 static JSGenericTypedArrayView* create(Structure*, JSGlobalObject*, PassRefPtr<typename Adaptor::ViewType> impl);
258 ExecState*, JSGenericTypedArrayView<OtherAdapto
[all...]

Completed in 76 milliseconds