Lines Matching refs:OldName
38 void incrementSubstitutions(ManglerVector &OldName) { in incrementSubstitutions() argument
41 ManglerVector NewName(OldName.size() * 2); in incrementSubstitutions()
44 const size_t OldLen = OldName.size(); in incrementSubstitutions()
46 if (OldName[OldPos] == '\0') in incrementSubstitutions()
48 if (OldName[OldPos] == 'S') { in incrementSubstitutions()
54 char Ch = OldName[Last]; in incrementSubstitutions()
67 NewName[NewPos++] = OldName[OldPos++]; // 'S' in incrementSubstitutions()
71 assert(OldName[OldPos - 1] == 'S'); in incrementSubstitutions()
72 assert(OldName[OldPos + Length] == '_'); in incrementSubstitutions()
85 char Ch = OldName[OldPos + Offset]; in incrementSubstitutions()
109 NewName[NewPos] = OldName[OldPos]; in incrementSubstitutions()
112 OldName = NewName; in incrementSubstitutions()