Searched refs:nextDot (Results 1 – 1 of 1) sorted by relevance
224 int nextDot = lastDot; in ambiguousToBinaryName() local225 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()