Searched refs:strRegexps (Results 1 – 1 of 1) sorted by relevance
38 protected boolean containsRegularExpressions(File f, String[] strRegexps) { in containsRegularExpressions() argument39 Pattern[] matchers = new Pattern[strRegexps.length]; in containsRegularExpressions()40 boolean[] results = new boolean[strRegexps.length]; in containsRegularExpressions()41 for (int i = 0; i < strRegexps.length; i++) { in containsRegularExpressions()42 matchers[i] = Pattern.compile(".*" + strRegexps[i] + ".*"); in containsRegularExpressions()51 for (int i = 0; i < strRegexps.length; i++) { in containsRegularExpressions()73 throw new AssertionError("Couldn't find " + strRegexps[i]); in containsRegularExpressions()