Home | History | Annotate | Download | only in dexdump

Lines Matching defs:targetLen

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