Home
last modified time | relevance | path

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

/external/smali/util/src/main/java/org/jf/util/
DClassFileNameHandler.java197 int secondStart = midPoint+1; // inclusive in shortenPathComponent() local
203 bytesRemoved += utf8Length(codePoints[secondStart]); in shortenPathComponent()
204 secondStart++; in shortenPathComponent()
208 (firstEnd > 0 || secondStart < codePoints.length)) { in shortenPathComponent()
214 if (bytesRemoved < bytesToRemove && secondStart < codePoints.length) { in shortenPathComponent()
215 bytesRemoved += utf8Length(codePoints[secondStart]); in shortenPathComponent()
216 secondStart++; in shortenPathComponent()
225 for (int i=secondStart; i<codePoints.length; i++) { in shortenPathComponent()