HomeSort by relevance Sort by last modified time
    Searched refs:getByte (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/wtf/
CryptographicallyRandomNumber.cpp 69 inline uint8_t getByte();
113 getByte();
123 uint8_t ARC4RandomNumberGenerator::getByte()
137 val = getByte() << 24;
138 val |= getByte() << 16;
139 val |= getByte() << 8;
140 val |= getByte();
162 result[length] = getByte();
  /frameworks/base/core/java/android/nfc/tech/
NfcV.java 67 mRespFlags = extras.getByte(EXTRA_RESP_FLAGS);
68 mDsfId = extras.getByte(EXTRA_DSFID);
  /external/chromium_org/third_party/skia/tools/
render_pictures_main.cpp 232 static inline int getByte(uint32_t value, int index) {
238 return SkMax32(SkMax32(abs(getByte(v1, 0) - getByte(v2, 0)), abs(getByte(v1, 1) - getByte(v2, 1))),
239 SkMax32(abs(getByte(v1, 2) - getByte(v2, 2)), abs(getByte(v1, 3) - getByte(v2, 3))));
  /external/skia/tools/
render_pictures_main.cpp 221 static inline int getByte(uint32_t value, int index) {
227 return SkMax32(SkMax32(abs(getByte(v1, 0) - getByte(v2, 0)), abs(getByte(v1, 1) - getByte(v2, 1))),
228 SkMax32(abs(getByte(v1, 2) - getByte(v2, 2)), abs(getByte(v1, 3) - getByte(v2, 3))));
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 57 try { Array.getByte(booleans, 0); fail(); } catch (IllegalArgumentException expected) {}
58 assertEquals(bytes[0], Array.getByte(bytes, 0));
59 try { Array.getByte(chars, 0); fail(); } catch (IllegalArgumentException expected) {}
60 try { Array.getByte(doubles, 0); fail(); } catch (IllegalArgumentException expected) {}
61 try { Array.getByte(floats, 0); fail(); } catch (IllegalArgumentException expected) {}
62 try { Array.getByte(ints, 0); fail(); } catch (IllegalArgumentException expected) {}
63 try { Array.getByte(longs, 0); fail(); } catch (IllegalArgumentException expected) {}
64 try { Array.getByte(shorts, 0); fail(); } catch (IllegalArgumentException expected) {}
65 try { Array.getByte(null, 0); fail(); } catch (NullPointerException expected) {}
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DistinguishedNameParser.java 180 encoded[i] = (byte) getByte(p);
264 int res = getByte(pos);
291 b = getByte(pos);
311 private int getByte(int position) {
  /external/okhttp/okio/src/test/java/okio/
ByteStringTest.java 32 @Test public void getByte() throws Exception {
34 assertEquals(-85, byteString.getByte(0));
35 assertEquals(18, byteString.getByte(1));
41 byteString.getByte(2);
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 185 encoded[i] = (byte) getByte(p);
269 int res = getByte(pos);
296 b = getByte(pos);
316 private int getByte(int position) {
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DNParser.java 208 encoded[i] = (byte) getByte(p);
300 int res = getByte(pos);
327 b = getByte(pos);
349 private int getByte(int position) throws IOException {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 520 len = getByte();
544 int getByte() {
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapRequestPullPhoneBook.java 104 mNewMissedCalls = oap.getByte(OAP_TAGID_NEW_MISSED_CALLS);
BluetoothPbapRequestPullVcardListing.java 99 mNewMissedCalls = oap.getByte(OAP_TAGID_NEW_MISSED_CALLS);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ArrayTest.java 140 * java.lang.reflect.Array#getByte(java.lang.Object, int)
144 // java.lang.reflect.Array.getByte(java.lang.Object, int)
149 ret = Array.getByte(x, 0);
155 ret = Array.getByte(new Object(), 0);
165 ret = Array.getByte(x, 4);
175 ret = Array.getByte(null, 0);
679 assertEquals("Get returned incorrect value", 1, Array.getByte(x, 0));
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 454 public byte getByte(String property, byte def) {
611 public byte getByte(String property) {
612 return getByte(property, (byte)0);
  /libcore/libart/src/main/java/java/lang/reflect/
Field.java 339 public byte getByte(Object object) throws IllegalAccessException, IllegalArgumentException {
340 return getByte(object, isAccessible());
343 private native byte getByte(Object object, boolean accessible)
    [all...]
  /external/libcxxabi/src/Unwind/
Unwind-EHABI.cpp 32 uint8_t getByte(const uint32_t* data, size_t offset) {
254 uint8_t byte = getByte(data, offset++);
270 (((uint32_t)getByte(data, offset++)) << 4);
304 uint8_t registers = getByte(data, offset++);
317 uint32_t v = getByte(data, offset++);
332 uint8_t v = getByte(data, offset++);
361 uint8_t v = getByte(data, offset++);
372 uint8_t v = getByte(data, offset++);
380 uint8_t v = getByte(data, offset++);
    [all...]
  /frameworks/base/core/java/android/os/
Bundle.java 565 public byte getByte(String key) {
566 return super.getByte(key);
578 public Byte getByte(String key, byte defaultValue) {
579 return super.getByte(key, defaultValue);
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestGetMessagesListing.java 121 mNewMessage = ((oap.getByte(OAP_TAGID_NEW_MESSAGE) & 0x01) == 1);
BluetoothMnsObexServer.java 99 Byte inst = oap.getByte(BluetoothMasRequest.OAP_TAGID_MAS_INSTANCE_ID);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-EHABI.cpp 31 uint8_t getByte(uint32_t* data, size_t offset) {
221 uint8_t byte = getByte(data, offset++);
236 ((byte & 0x0f) << 12) | (getByte(data, offset++) << 4);
270 uint8_t registers = getByte(data, offset++);
283 uint32_t v = getByte(data, offset++);
298 uint8_t v = getByte(data, offset++);
327 uint8_t v = getByte(data, offset++);
338 uint8_t v = getByte(data, offset++);
346 uint8_t v = getByte(data, offset++);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageHeaderParser.java 85 int alpha = streamReader.getByte();
315 public int getByte() throws IOException {
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 209 builder.put(action.getByte(), action);
219 private byte getByte() {
  /external/dexmaker/src/test/java/com/google/dexmaker/stock/
ProxyBuilderTest.java 173 public byte getByte() { return 2; }
190 assertEquals(9, proxy.getByte());
210 public byte getByte(byte input) { return input; }
235 assertEquals((byte) 2, proxy.getByte((byte) 2));
236 assertEquals((byte) 3, proxy.getByte((byte) 3));
  /art/test/100-reflect2/src/
Main.java 36 System.out.println(f.getByte(null));
70 System.out.println(f.getByte(null));
105 System.out.println(f.getByte(null));
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 56 assertEquals(i, simple.getByte(i));
249 public byte getByte(int pos);
301 public byte getByte(int pos) {

Completed in 1210 milliseconds

1 2 3 4