Searched defs:DataView (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/src/
H A Dtypedarray.js325 // --------------------------- DataView -----------------------------
327 var $DataView = global.DataView;
356 throw MakeTypeError('constructor_not_function', ["DataView"]);
363 ['DataView.buffer', this]);
371 ['DataView.byteOffset', this]);
379 ['DataView.byteLength', this]);
404 ['DataView.getTYPENAME', this]);
417 ['DataView.setTYPENAME', this]);
434 // Setup the DataView constructo
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DDataView.cpp27 #include "core/html/canvas/DataView.h"
48 PassRefPtr<DataView> DataView::create(unsigned length)
56 PassRefPtr<DataView> DataView::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength)
65 return adoptRef(new DataView(buffer, byteOffset, byteLength));
68 DataView::DataView(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength) function in class:blink::DataView
134 T DataView::getData(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) const
149 void DataView
[all...]
/external/chromium_org/v8/include/
H A Dv8.h1666 * Returns true if this value is a DataView.
2959 * including TypedArrays and DataView (ES6 draft 15.13).
3154 * An instance of DataView constructor (ES6 draft 15.13.7).
3157 class V8_EXPORT DataView : public ArrayBufferView { class in namespace:v8
3159 static Local<DataView> New(Handle<ArrayBuffer> array_buffer,
3161 V8_INLINE static DataView* Cast(Value* obj);
3164 DataView();
6758 DataView* DataView::Cast(v8::Value* value) {
6762 return static_cast<DataView*>(valu
[all...]

Completed in 253 milliseconds