Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/lang/
DInteger.java161 char firstDigit = string.charAt(i); in decode() local
162 boolean negative = firstDigit == '-'; in decode()
163 if (negative || firstDigit == '+') { in decode()
167 firstDigit = string.charAt(++i); in decode()
171 if (firstDigit == '0') { in decode()
175 if ((firstDigit = string.charAt(i)) == 'x' || firstDigit == 'X') { in decode()
183 } else if (firstDigit == '#') { in decode()
DLong.java146 char firstDigit = string.charAt(i); in decode() local
147 boolean negative = firstDigit == '-'; in decode()
148 if (negative || firstDigit == '+') { in decode()
152 firstDigit = string.charAt(++i); in decode()
156 if (firstDigit == '0') { in decode()
160 if ((firstDigit = string.charAt(i)) == 'x' || firstDigit == 'X') { in decode()
169 } else if (firstDigit == '#') { in decode()