Searched refs:hexArray (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutDirectionsTest.java190 private static String hexArray(int[] array) { method in class:StaticLayoutDirectionsTest
209 hexArray(expected.mDirections),
210 hexArray(result.mDirections));
216 fail("expected: " + hexArray(expected.mDirections) +
217 " got: " + hexArray(result.mDirections));
/frameworks/base/services/core/java/com/android/server/locksettings/
H A DSyntheticPasswordManager.java1174 final protected static char[] hexArray = "0123456789ABCDEF".toCharArray(); field in class:SyntheticPasswordManager
1182 hexChars[j * 2] = hexArray[v >>> 4];
1183 hexChars[j * 2 + 1] = hexArray[v & 0x0F];

Completed in 57 milliseconds