Home
last modified time | relevance | path

Searched refs:setFloat64 (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DDataView.h72 …void setFloat64(unsigned byteOffset, double value, ExceptionState& ec) { setFloat64(byteOffset, va… in setFloat64() function
73 void setFloat64(unsigned byteOffset, double value, bool littleEndian, ExceptionState&);
DDataView.idl54 …[RaisesException] void setFloat64(unsigned long byteOffset, double value, optional boolean littleE…
DDataView.cpp238 void DataView::setFloat64(unsigned byteOffset, double value, bool littleEndian, ExceptionState& exc… in setFloat64() function in blink::DataView
/external/chromium_org/mojo/public/js/bindings/
Dbuffer.js149 Buffer.prototype.setFloat64 = function(offset, value) { method in Buffer
150 this.dataView.setFloat64(offset, value, kHostIsLittleEndian);
Dvalidation_unittests.js63 expectedData.setFloat64(4, -10.03);
Dcodec.js254 this.buffer.setFloat64(this.next, val);
/external/chromium_org/v8/test/mjsunit/harmony/
Ddataview-accessors.js449 assertThrows(function() { a.setFloat64(); }, TypeError);
458 assertThrows(function() { a.setFloat64(1) }, TypeError);
/external/chromium_org/mojo/public/js/bindings/tests/
Dvalidation_test_input_parser.js194 this.buffer.setFloat64(this.index, n);