Home
last modified time | relevance | path

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

/development/tools/apkcheck/src/com/android/apkcheck/
DTypeUtils.java224 int nextDot = lastDot; in ambiguousToBinaryName() local
225 while (nextDot >= 0) { in ambiguousToBinaryName()
226 String testName = typeName.substring(0, nextDot); in ambiguousToBinaryName()
231 nextDot = typeName.lastIndexOf('.', nextDot-1); in ambiguousToBinaryName()
234 if (nextDot < 0) { in ambiguousToBinaryName()
238 } else if (nextDot == lastDot) { in ambiguousToBinaryName()
243 typeName = typeName.substring(0, nextDot+1) + in ambiguousToBinaryName()
244 typeName.substring(nextDot+1).replace('.', '$'); in ambiguousToBinaryName()