Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/util/
DHexEncoding.java86 int pseudoCodePoint = str[offset]; in toDigit() local
88 if ('0' <= pseudoCodePoint && pseudoCodePoint <= '9') { in toDigit()
89 return pseudoCodePoint - '0'; in toDigit()
90 } else if ('a' <= pseudoCodePoint && pseudoCodePoint <= 'f') { in toDigit()
91 return 10 + (pseudoCodePoint - 'a'); in toDigit()
92 } else if ('A' <= pseudoCodePoint && pseudoCodePoint <= 'F') { in toDigit()
93 return 10 + (pseudoCodePoint - 'A'); in toDigit()