Home | History | Annotate | Download | only in src

Lines Matching full:patterns

89         List<Pattern> patterns = new ArrayList<Pattern>();
92 parseFile(globalExcludes, patterns);
98 parseFile(googleExcludes, patterns);
104 parseFile(localExcludes, patterns);
107 return new Excludes(patterns);
245 * the compiled patterns to the given collection. Ignores lines starting
249 * @param patterns collection to add compiled patterns from file to
251 public static void parseFile(File file, Collection<Pattern> patterns)
259 patterns.add(Pattern.compile(trimmed));