Home
last modified time | relevance | path

Searched refs:hexArray (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutDirectionsTest.java191 private static String hexArray(int[] array) { in hexArray() method in StaticLayoutDirectionsTest
210 hexArray(expected.mDirections), in checkDirections()
211 hexArray(result.mDirections)); in checkDirections()
217 fail("expected: " + hexArray(expected.mDirections) + in expectDirections()
218 " got: " + hexArray(result.mDirections)); in expectDirections()
/aosp12/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/
H A DPacketUtils.java456 private static final char[] hexArray = "0123456789ABCDEF".toCharArray(); field in PacketUtils
461 sb.append(hexArray[b >>> 4]); in bytesToHex()
462 sb.append(hexArray[b & 0x0F]); in bytesToHex()
/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
H A DPacketUtils.java732 private static final char[] hexArray = "0123456789ABCDEF".toCharArray(); field in PacketUtils
737 sb.append(hexArray[b >>> 4]); in bytesToHex()
738 sb.append(hexArray[b & 0x0F]); in bytesToHex()