Home
last modified time | relevance | path

Searched refs:hexChars (Results 1 – 5 of 5) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/util/
DUtil.java41 private static String bytesToHex(byte[] bytes, char[] hexChars) { in bytesToHex() argument
45 hexChars[j * 2] = HEX_CHAR_ARRAY[v >>> 4]; in bytesToHex()
46 hexChars[j * 2 + 1] = HEX_CHAR_ARRAY[v & 0x0F]; in bytesToHex()
48 return new String(hexChars); in bytesToHex()
/external/apache-http/android/src/android/net/http/
DRequestHandle.java412 final char hexChars[] = in bufferToHex() local
424 hex.append(hexChars[h]); in bufferToHex()
425 hex.append(hexChars[l]); in bufferToHex()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestMonkey.java1804 String hexChars = "0123456789abcdef"; in appendCharToBuf() local
1808 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
1814 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java1803 String hexChars = "0123456789abcdef"; in appendCharToBuf() local
1807 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
1813 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp4482 UnicodeString hexChars("0123456789abcdef"); in RunMonkey() local
4496 errorText.append(hexChars.charAt((c>>bn)&0xf)); in RunMonkey()
4501 errorText.append(hexChars.charAt((c>>bn)&0xf)); in RunMonkey()