Lines Matching refs:SeqID
243 unsigned SeqID = 0; member in __anon01ebe6bc0111::CXXNameMangler
436 StructorType(Outer.StructorType), SeqID(Outer.SeqID), in CXXNameMangler()
464 void mangleSeqID(unsigned SeqID);
1143 ModuleSubstitutions.insert({Name, SeqID++}); in mangleModuleNamePrefix()
3723 ++SeqID; in mangleType()
6703 void CXXNameMangler::mangleSeqID(unsigned SeqID) { in mangleSeqID() argument
6704 if (SeqID == 0) { in mangleSeqID()
6706 } else if (SeqID == 1) { in mangleSeqID()
6709 SeqID--; in mangleSeqID()
6716 for (; SeqID != 0; SeqID /= 36) { in mangleSeqID()
6717 unsigned C = SeqID % 36; in mangleSeqID()
6783 unsigned SeqID = I->second; in mangleSubstitution() local
6785 mangleSeqID(SeqID); in mangleSubstitution()
6951 Substitutions[Ptr] = SeqID++; in addSubstitution()
6955 assert(Other->SeqID >= SeqID && "Must be superset of substitutions!"); in extendSubstitutions()
6956 if (Other->SeqID > SeqID) { in extendSubstitutions()
6958 SeqID = Other->SeqID; in extendSubstitutions()