OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getUint8
(Results
1 - 10
of
10
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
Base64Reader.java
85
private int
getUint8
() throws IOException {
96
value1 =
getUint8
() << 2;
100
value1 = (
getUint8
() & 0x0f) << 4;
104
value1 = (
getUint8
() & 0x03) << 6;
105
value2 = value1 |
getUint8
();
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DataView.idl
34
[RaisesException] octet
getUint8
(unsigned long byteOffset);
DataView.h
47
uint8_t
getUint8
(unsigned byteOffset, ExceptionState&);
DataView.cpp
167
uint8_t DataView::
getUint8
(unsigned byteOffset, ExceptionState& exceptionState)
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/
byte_reader.js
91
codes.push(dataView.
getUint8
(pos + i));
114
var code = dataView.
getUint8
(pos + i);
143
littleEndian = (dataView.
getUint8
(pos) == 0xFF);
188
var bits = dataView.
getUint8
(pos + (i++)) << 16;
191
bits |= dataView.
getUint8
(pos + (i++)) << 8;
194
bits |= dataView.
getUint8
(pos + (i++));
/external/chromium_org/v8/test/mjsunit/harmony/
dataview-accessors.js
325
assertSame(expected, view.
getUint8
(0));
327
assertSame(expected, view.
getUint8
(0, true));
410
CheckAccessor("
getUint8
");
433
assertThrows(function() { a.
getUint8
(); }, TypeError);
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp
342
bool
getUint8
(const Dictionary& raw, const char* propertyName, uint8_t& value, const ExceptionContext& context, ExceptionState& exceptionState)
456
if (!
getUint8
(raw, "length", length, context, es))
/external/chromium_org/v8/src/
typedarray.js
422
"
getUint8
", DataViewGetUint8,
/external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js
[
all
...]
chromeVoxChromeOptionsScript.js
[
all
...]
Completed in 148 milliseconds