Lines Matching refs:targetLen
128 int targetLen = strlen(str); in descriptorToDot() local
134 while (targetLen > 1 && str[offset] == '[') { in descriptorToDot()
136 targetLen--; in descriptorToDot()
140 if (targetLen == 1) { in descriptorToDot()
144 targetLen = strlen(str); in descriptorToDot()
147 if (targetLen >= 2 && str[offset] == 'L' && in descriptorToDot()
148 str[offset+targetLen-1] == ';') in descriptorToDot()
150 targetLen -= 2; in descriptorToDot()
155 newStr = (char*)malloc(targetLen + arrayDepth * 2 +1); in descriptorToDot()
159 for (i = 0; i < targetLen; i++) { in descriptorToDot()
170 assert(i == targetLen + arrayDepth * 2); in descriptorToDot()