Lines Matching refs:StreamingDataView

212 function StreamingDataView(buffer, littleEndian, byteOffset, byteLength)  class
223 StreamingDataView.prototype.rewind = function()
229 StreamingDataView.prototype.readInt8 = function()
235 StreamingDataView.prototype.readUint8 = function()
241 StreamingDataView.prototype.readInt16 = function()
249 StreamingDataView.prototype.readUint16 = function()
257 StreamingDataView.prototype.readInt32 = function()
265 StreamingDataView.prototype.readUint32 = function()
273 StreamingDataView.prototype.readFloat32 = function()
281 StreamingDataView.prototype.readFloat64 = function()
289 StreamingDataView.prototype.readString = function(length)
299 StreamingDataView.prototype.readInto = function(typedArray)
307 StreamingDataView.prototype.writeInt8 = function(value)
313 StreamingDataView.prototype.writeUint8 = function(value)
319 StreamingDataView.prototype.writeInt16 = function(value)
326 StreamingDataView.prototype.writeUint16 = function(value)
333 StreamingDataView.prototype.writeInt32 = function(value)
340 StreamingDataView.prototype.writeUint32 = function(value)
347 StreamingDataView.prototype.writeFloat32 = function(value)
354 StreamingDataView.prototype.writeFloat64 = function(value)
361 StreamingDataView.prototype.writeString = function(string)
370 StreamingDataView.prototype.setUint32 = function(byteOffset, value)
376 StreamingDataView.prototype.pad = function(length)
962 this.dataView = new StreamingDataView(this.buffer, true);
980 this.dataView = new StreamingDataView(this.buffer, true, byteOffset);