HomeSort by relevance Sort by last modified time
    Searched refs:firstDigit (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/lang/
Integer.java 152 char firstDigit = string.charAt(i);
153 boolean negative = firstDigit == '-';
160 firstDigit = string.charAt(++i);
164 if (firstDigit == '0') {
168 if ((firstDigit = string.charAt(i)) == 'x' || firstDigit == 'X') {
178 } else if (firstDigit == '#') {
Long.java 136 char firstDigit = string.charAt(i);
137 boolean negative = firstDigit == '-';
142 firstDigit = string.charAt(++i);
146 if (firstDigit == '0') {
150 if ((firstDigit = string.charAt(i)) == 'x' || firstDigit == 'X') {
159 } else if (firstDigit == '#') {

Completed in 890 milliseconds