OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shortchars
(Results
1 - 1
of
1
) sorted by null
/external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java
115
char[]
shortChars
;
117
shortChars
= shortLiteral.substring(0, shortLiteral.length()-1).toCharArray();
119
shortChars
= shortLiteral.toCharArray();
125
if (
shortChars
[position] == '-') {
130
if (
shortChars
[position] == '0') {
132
if (position ==
shortChars
.length) {
134
} else if (
shortChars
[position] == 'x' ||
shortChars
[position] == 'X') {
137
} else if (Character.digit(
shortChars
[position], 8) >= 0) {
147
while (position <
shortChars
.length)
[
all
...]
Completed in 113 milliseconds