Home | History | Annotate | Download | only in canvas

Lines Matching defs:DataView

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)
162 int8_t DataView::getInt8(unsigned byteOffset, ExceptionState& exceptionState)
167 uint8_t DataView::getUint8(unsigned byteOffset, ExceptionState& exceptionState)
172 int16_t DataView::getInt16(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState)
177 uint16_t DataView::getUint16(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState)
182 int32_t DataView::getInt32(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState)
187 uint32_t DataView::getUint32(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState)
192 float DataView::getFloat32(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState)
197 double DataView::getFloat64(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState)
202 void DataView::setInt8(unsigned byteOffset, int8_t value, ExceptionState& exceptionState)
207 void DataView::setUint8(unsigned byteOffset, uint8_t value, ExceptionState& exceptionState)
212 void DataView::setInt16(unsigned byteOffset, short value, bool littleEndian, ExceptionState& exceptionState)
217 void DataView::setUint16(unsigned byteOffset, uint16_t value, bool littleEndian, ExceptionState& exceptionState)
222 void DataView::setInt32(unsigned byteOffset, int32_t value, bool littleEndian, ExceptionState& exceptionState)
227 void DataView::setUint32(unsigned byteOffset, uint32_t value, bool littleEndian, ExceptionState& exceptionState)
232 void DataView::setFloat32(unsigned byteOffset, float value, bool littleEndian, ExceptionState& exceptionState)
237 void DataView::setFloat64(unsigned byteOffset, double value, bool littleEndian, ExceptionState& exceptionState)
242 void DataView::neuter()