Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Tags

75   std::vector<Tag> Tags;
76 // Collect tags.
77 Tags.reserve(Classes.size() + Defs.size());
81 Tags.push_back(Tag(I->first, locate(I->second)));
85 Tags.push_back(Tag(I->first, locate(I->second)));
86 // Emit tags.
87 std::sort(Tags.begin(), Tags.end());
90 for (std::vector<Tag>::const_iterator I = Tags.begin(), E = Tags.end();