Searched refs:dataView (Results 1 - 2 of 2) sorted by relevance

/haiku/src/apps/debuganalyzer/gui/
H A DAbstractGeneralPage.cpp42 TextDataView* dataView = new TextDataView(text); local
43 layout->AddView(dataView, 1, row);
45 return dataView;
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js215 this.dataView = new DataView(buffer.buffer, byteOffset, byteLength);
231 return this.dataView.getInt8(this.position++);
237 return this.dataView.getUint8(this.position++);
243 var result = this.dataView.getInt16(this.position, this.littleEndian);
251 var result = this.dataView.getUint16(this.position, this.littleEndian);
259 var result = this.dataView.getInt32(this.position, this.littleEndian);
267 var result = this.dataView.getUint32(this.position, this.littleEndian);
275 var result = this.dataView.getFloat32(this.position, this.littleEndian);
283 var result = this.dataView.getFloat64(this.position, this.littleEndian);
291 var where = this.dataView
[all...]

Completed in 77 milliseconds