Searched refs:hexArray (Results 1 – 3 of 3) sorted by relevance
191 private static String hexArray(int[] array) { in hexArray() method in StaticLayoutDirectionsTest210 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()
456 private static final char[] hexArray = "0123456789ABCDEF".toCharArray(); field in PacketUtils461 sb.append(hexArray[b >>> 4]); in bytesToHex()462 sb.append(hexArray[b & 0x0F]); in bytesToHex()
732 private static final char[] hexArray = "0123456789ABCDEF".toCharArray(); field in PacketUtils737 sb.append(hexArray[b >>> 4]); in bytesToHex()738 sb.append(hexArray[b & 0x0F]); in bytesToHex()