Home | History | Annotate | Download | only in find

Lines Matching defs:regex

10 import java.util.regex.Matcher;
11 import java.util.regex.Pattern;
207 String regex = "(?:" + otherThan(c) + ")*+" + cQuoted;
208 Pattern p = Pattern.compile(regex, Pattern.MULTILINE);
536 String regex = "(?:(?:\\.\\.?)?" + nonDot + ")*(\\.\\.\\.)";
537 Pattern p = Pattern.compile(regex, Pattern.MULTILINE);
1498 String regex = "\\b" + Pattern.quote(name) + "\\b"; // sufficient?
1499 Pattern pat = Pattern.compile(regex, Pattern.MULTILINE);