Lines Matching defs:SeqID
241 unsigned SeqID = 0;
434 StructorType(Outer.StructorType), SeqID(Outer.SeqID),
462 void mangleSeqID(unsigned SeqID);
1146 ModuleSubstitutions.insert({Name, SeqID++});
3836 // We increment the SeqID here to emulate adding an entry to the
3838 ++SeqID;
6883 void CXXNameMangler::mangleSeqID(unsigned SeqID) {
6884 if (SeqID == 0) {
6886 } else if (SeqID == 1) {
6889 SeqID--;
6896 for (; SeqID != 0; SeqID /= 36) {
6897 unsigned C = SeqID % 36;
6963 unsigned SeqID = I->second;
6965 mangleSeqID(SeqID);
7131 Substitutions[Ptr] = SeqID++;
7135 assert(Other->SeqID >= SeqID && "Must be superset of substitutions!");
7136 if (Other->SeqID > SeqID) {
7138 SeqID = Other->SeqID;