Home
last modified time | relevance | path

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

/dalvik/tools/dexdeps/src/com/android/dexdeps/
DOutput.java273 int targetLen = descr.length(); in descriptorToDot() local
278 while (targetLen > 1 && descr.charAt(offset) == '[') { in descriptorToDot()
280 targetLen--; in descriptorToDot()
284 if (targetLen == 1) { in descriptorToDot()
287 targetLen = descr.length(); in descriptorToDot()
290 if (targetLen >= 2 && descr.charAt(offset) == 'L' && in descriptorToDot()
291 descr.charAt(offset+targetLen-1) == ';') in descriptorToDot()
293 targetLen -= 2; /* two fewer chars to copy */ in descriptorToDot()
298 char[] buf = new char[targetLen + arrayDepth * 2]; in descriptorToDot()
302 for (i = 0; i < targetLen; i++) { in descriptorToDot()