Lines Matching refs:NewName
41 ManglerVector NewName(OldName.size() * 2); in incrementSubstitutions() local
67 NewName[NewPos++] = OldName[OldPos++]; // 'S' in incrementSubstitutions()
70 assert(NewName[NewPos - 1] == 'S'); in incrementSubstitutions()
76 NewName[NewPos++] = (Length ? '1' : '0'); in incrementSubstitutions()
78 NewName[NewPos++] = '0'; in incrementSubstitutions()
101 NewName[NewPos + Offset] = Ch; in incrementSubstitutions()
109 NewName[NewPos] = OldName[OldPos]; in incrementSubstitutions()
111 assert(NewName[NewPos] == '\0'); in incrementSubstitutions()
112 OldName = NewName; in incrementSubstitutions()
136 ManglerVector NewName(BufLen); in mangleName() local
143 snprintf(NewName.data(), BufLen, "_ZN%u%s%s", PrefixLength, in mangleName()
149 incrementSubstitutions(NewName); in mangleName()
150 return NewName.data(); in mangleName()
181 snprintf(NewName.data(), BufLen, "_ZN%u%s%u%sE%s", PrefixLength, in mangleName()
184 incrementSubstitutions(NewName); in mangleName()
185 return NewName.data(); in mangleName()