Home | History | Annotate | Download | only in llvm-extract

Lines Matching refs:Regex

28 #include "llvm/Support/Regex.h"
129 Regex RegEx(ExtractRegExpAliases[i]);
130 if (!RegEx.isValid(Error)) {
132 "invalid regex: " << Error;
137 if (RegEx.match(GA->getName())) {
163 Regex RegEx(ExtractRegExpGlobals[i]);
164 if (!RegEx.isValid(Error)) {
166 "invalid regex: " << Error;
170 if (RegEx.match(GV.getName())) {
196 Regex RegEx(RegExStr);
197 if (!RegEx.isValid(Error)) {
199 "invalid regex: " << Error;
204 if (RegEx.match(F->getName())) {