HomeSort by relevance Sort by last modified time
    Searched defs:DataView (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DataView.cpp 27 #include "core/html/canvas/DataView.h"
46 PassRefPtr<DataView> DataView::create(unsigned length)
54 PassRefPtr<DataView> DataView::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength)
63 return adoptRef(new DataView(buffer, byteOffset, byteLength));
66 DataView::DataView(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned byteLength)
133 T DataView::getData(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) const
148 void DataView::setData(unsigned byteOffset, T value, bool littleEndian, ExceptionState& exceptionState
    [all...]
  /external/chromium_org/v8/src/
typedarray.js 325 // --------------------------- 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 constructor
    [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]

Completed in 344 milliseconds