Lines Matching refs:Prefix
92 // Get our prefix and unparsed regexp.
94 StringRef Prefix = SplitLine.first;
107 if (Prefix == "global-init") {
108 Prefix = "global";
110 } else if (Prefix == "global-init-type") {
111 Prefix = "type";
113 } else if (Prefix == "global-init-src") {
114 Prefix = "src";
120 Entries[Prefix][Category].Strings.insert(Regexp);
139 // Add this regexp into the proper group by its prefix.
140 if (!Regexps[Prefix][Category].empty())
141 Regexps[Prefix][Category] += "|";
142 Regexps[Prefix][Category] += "^" + Regexp + "$";