Home
last modified time | relevance | path

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

/external/smali/smali/src/main/java/org/jf/smali/
DLiteralTools.java115 char[] shortChars; in parseShort() local
117 shortChars = shortLiteral.substring(0, shortLiteral.length()-1).toCharArray(); in parseShort()
119 shortChars = shortLiteral.toCharArray(); in parseShort()
125 if (shortChars[position] == '-') { in parseShort()
130 if (shortChars[position] == '0') { in parseShort()
132 if (position == shortChars.length) { in parseShort()
134 } else if (shortChars[position] == 'x' || shortChars[position] == 'X') { in parseShort()
137 } else if (Character.digit(shortChars[position], 8) >= 0) { in parseShort()
147 while (position < shortChars.length) { in parseShort()
148 digit = Character.digit(shortChars[position], radix); in parseShort()
[all …]