Home | History | Annotate | Download | only in actions

Lines Matching defs:blacklist

38  * appears in at least the number of threshold given packages. An optional blacklist can be
43 private Pattern blacklist;
47 * Create an action with the given parameters. The blacklist is a regular expression
51 String blacklist) {
55 if (blacklist != null) {
56 this.blacklist = Pattern.compile(blacklist);
88 Set<String> result = fromThreshold(uses, blacklist, threshold);
101 private Set<String> fromThreshold(Map<String, Set<String>> classUses, Pattern blacklist,
107 if (blacklist == null || !blacklist.matcher(e.getKey()).matches()) {