Lines Matching refs:targetLen
135 int targetLen = strlen(str); in descriptorToDot() local
141 while (targetLen > 1 && str[offset] == '[') { in descriptorToDot()
143 targetLen--; in descriptorToDot()
147 if (targetLen == 1) { in descriptorToDot()
151 targetLen = strlen(str); in descriptorToDot()
154 if (targetLen >= 2 && str[offset] == 'L' && in descriptorToDot()
155 str[offset+targetLen-1] == ';') in descriptorToDot()
157 targetLen -= 2; in descriptorToDot()
162 newStr = (char*)malloc(targetLen + arrayDepth * 2 +1); in descriptorToDot()
166 for (i = 0; i < targetLen; i++) { in descriptorToDot()
177 assert(i == targetLen + arrayDepth * 2); in descriptorToDot()