Home
last modified time | relevance | path

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

/external/smali/util/src/main/java/org/jf/util/
DClassFileNameHandler.java198 int bytesRemoved = utf8Length(codePoints[midPoint]); in shortenPathComponent() local
202 if (((codePoints.length % 2) == 0) && bytesRemoved < bytesToRemove) { in shortenPathComponent()
203 bytesRemoved += utf8Length(codePoints[secondStart]); in shortenPathComponent()
207 while ((bytesRemoved < bytesToRemove) && in shortenPathComponent()
211 bytesRemoved += utf8Length(codePoints[firstEnd]); in shortenPathComponent()
214 if (bytesRemoved < bytesToRemove && secondStart < codePoints.length) { in shortenPathComponent()
215 bytesRemoved += utf8Length(codePoints[secondStart]); in shortenPathComponent()