Home
last modified time | relevance | path

Searched refs:getUint16 (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DDataView.h49 …uint16_t getUint16(unsigned byteOffset, ExceptionState& ec) { return getUint16(byteOffset, false, … in getUint16() function
50 uint16_t getUint16(unsigned byteOffset, bool littleEndian, ExceptionState&);
DDataView.idl38 …[RaisesException] unsigned short getUint16(unsigned long byteOffset, optional boolean littleEndian…
DDataView.cpp178 uint16_t DataView::getUint16(unsigned byteOffset, bool littleEndian, ExceptionState& exceptionState) in getUint16() function in blink::DataView
/external/chromium_org/mojo/public/js/bindings/
Dbuffer.js60 Buffer.prototype.getUint16 = function(offset) { method in Buffer
61 return this.dataView.getUint16(offset, kHostIsLittleEndian);
Dcodec.js68 var result = this.buffer.getUint16(this.next);
/external/chromium_org/v8/test/mjsunit/harmony/
Ddataview-accessors.js341 assertSame(expected, view.getUint16(0));
343 assertSame(expected, view.getUint16(0, true));
435 assertThrows(function() { a.getUint16(); }, TypeError);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
Dbyte_reader.js150 var code = dataView.getUint16(pos + i, littleEndian);
244 dataView.getUint16(pos, false).toString(16); // For debugging.
/external/deqp/framework/delibs/decpp/
DdeRandom.hpp54 deUint16 getUint16 (void) { return (deUint16)deRandom_getUint32(&m_rnd); } in getUint16() function in de::Random
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
DNormalizeAlgorithm.cpp380 bool getUint16(const Dictionary& raw, const char* propertyName, uint16_t& value, const ErrorContext… in getUint16() function
436 if (!getUint16(raw, "length", length, context, error)) in parseAesKeyGenParams()