Searched refs:fromHexDigitsToLong (Results 1 – 3 of 3) sorted by relevance
| /libcore/ojluni/src/test/java/util/HexFormat/ |
| D | HexFormatTest.java | 296 assertThrows(NPE, () -> HexFormat.fromHexDigitsToLong(null)); in testFromHexNPE() 297 assertThrows(NPE, () -> HexFormat.fromHexDigitsToLong(null, 0, 0)); in testFromHexNPE() 321 () -> HexFormat.fromHexDigitsToLong(string, fromIndex, toIndex)); in badFromHexDigits() 333 () -> HexFormat.fromHexDigitsToLong("98765432109876543210")); in wrongNumberDigits() 335 () -> HexFormat.fromHexDigitsToLong("98765432109876543210", 0, 17)); in wrongNumberDigits() 594 long actual = HexFormat.fromHexDigitsToLong(s, 0, digits); in testfromHexDigitsToLong() 610 long actual = HexFormat.fromHexDigitsToLong(s); in testToHexDigitsLong() 696 long longVal = HexFormat.fromHexDigitsToLong(longStr, 0, 16); in samples()
|
| /libcore/ojluni/src/main/java/java/util/ |
| D | HexFormat.java | 1050 public static long fromHexDigitsToLong(CharSequence string) { in fromHexDigitsToLong() method in HexFormat 1051 return fromHexDigitsToLong(string, 0, string.length()); in fromHexDigitsToLong() 1080 public static long fromHexDigitsToLong(CharSequence string, int fromIndex, int toIndex) { in fromHexDigitsToLong() method in HexFormat
|
| /libcore/api/ |
| D | current.txt | 14164 method public static long fromHexDigitsToLong(CharSequence); 14165 method public static long fromHexDigitsToLong(CharSequence, int, int);
|