Searched refs:intChars (Results 1 – 1 of 1) sorted by relevance
185 char[] intChars = intLiteral.toCharArray(); in parseInt() local189 if (intChars[position] == '-') { in parseInt()194 if (intChars[position] == '0') { in parseInt()196 if (position == intChars.length) { in parseInt()198 } else if (intChars[position] == 'x' || intChars[position] == 'X') { in parseInt()201 } else if (Character.digit(intChars[position], 8) >= 0) { in parseInt()211 while (position < intChars.length) { in parseInt()212 digit = Character.digit(intChars[position], radix); in parseInt()214 …w new NumberFormatException("The string contains an invalid digit - '" + intChars[position] + "'"); in parseInt()