Lines Matching defs:SeqID
243 unsigned SeqID = 0;
436 StructorType(Outer.StructorType), SeqID(Outer.SeqID),
464 void mangleSeqID(unsigned SeqID);
1143 ModuleSubstitutions.insert({Name, SeqID++});
3721 // We increment the SeqID here to emulate adding an entry to the
3723 ++SeqID;
6703 void CXXNameMangler::mangleSeqID(unsigned SeqID) {
6704 if (SeqID == 0) {
6706 } else if (SeqID == 1) {
6709 SeqID--;
6716 for (; SeqID != 0; SeqID /= 36) {
6717 unsigned C = SeqID % 36;
6783 unsigned SeqID = I->second;
6785 mangleSeqID(SeqID);
6951 Substitutions[Ptr] = SeqID++;
6955 assert(Other->SeqID >= SeqID && "Must be superset of substitutions!");
6956 if (Other->SeqID > SeqID) {
6958 SeqID = Other->SeqID;