Home
last modified time | relevance | path

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

/packages/modules/Wifi/framework/java/android/net/wifi/util/
DHexEncoding.java171 int pseudoCodePoint = str[offset]; in toDigit() local
173 if ('0' <= pseudoCodePoint && pseudoCodePoint <= '9') { in toDigit()
174 return pseudoCodePoint - '0'; in toDigit()
175 } else if ('a' <= pseudoCodePoint && pseudoCodePoint <= 'f') { in toDigit()
176 return 10 + (pseudoCodePoint - 'a'); in toDigit()
177 } else if ('A' <= pseudoCodePoint && pseudoCodePoint <= 'F') { in toDigit()
178 return 10 + (pseudoCodePoint - 'A'); in toDigit()