Lines Matching refs:newStr
120 char* newStr; in descriptorToDot() local
144 newStr = malloc(targetLen + arrayDepth * 2 +1); in descriptorToDot()
150 newStr[i] = (ch == '/' || ch == '$') ? '.' : ch; in descriptorToDot()
155 newStr[i++] = '['; in descriptorToDot()
156 newStr[i++] = ']'; in descriptorToDot()
158 newStr[i] = '\0'; in descriptorToDot()
161 return newStr; in descriptorToDot()
173 char* newStr; in descriptorClassToDot() local
183 newStr = strdup(lastSlash); in descriptorClassToDot()
184 newStr[strlen(lastSlash)-1] = '\0'; in descriptorClassToDot()
185 for (cp = newStr; *cp != '\0'; cp++) { in descriptorClassToDot()
190 return newStr; in descriptorClassToDot()