Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DDataView.h57 …double getFloat64(unsigned byteOffset, ExceptionState& ec) { return getFloat64(byteOffset, false, … in getFloat64() function
58 double getFloat64(unsigned byteOffset, bool littleEndian, ExceptionState&);
DDataView.idl44 [RaisesException] double getFloat64(unsigned long byteOffset, optional boolean littleEndian);
DDataView.cpp198 double DataView::getFloat64(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getFloat64() function in blink::DataView
/external/chromium_org/mojo/public/js/bindings/
Dbuffer.js102 Buffer.prototype.getFloat64 = function(offset) { method in Buffer
103 return this.dataView.getFloat64(offset, kHostIsLittleEndian);
Dcodec.js104 var result = this.buffer.getFloat64(this.next);
/external/deqp/executor/
DxeTestCaseResult.cpp75 return str << std::setprecision(std::numeric_limits<double>::digits10 + 2) << value.getFloat64(); in operator <<()
DxeTestCaseResult.hpp178 double getFloat64 (void) const { DE_ASSERT(getType() == TYPE_FLOAT64); return m_value.float64; } in getFloat64() function in xe::ri::NumericValue
/external/chromium_org/v8/test/mjsunit/harmony/
Ddataview-accessors.js440 assertThrows(function() { a.getFloat64(); }, TypeError);