Searched defs:matchers (Results 1 - 3 of 3) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DQueryMatchers.java50 private List<LineMatcher> matchers; field in class:QueryMatchers
56 * @param query the query to generate matchers for
57 * @param fields a map whose keys tell which fields to create matchers for,
65 matchers = new ArrayList<LineMatcher>();
69 matchers.add(0, new TokenSetMatcher(caseSensitiveTerms, false));
72 matchers.add(0, new TokenSetMatcher(caseInsensitiveTerms, true));
74 if (matchers.isEmpty()) {
77 LineMatcher[] m = matchers.toArray(new LineMatcher[matchers.size()]);
112 matchers
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DAnalyzerGuru.java109 matchers = new ArrayList<FileAnalyzerFactory.Matcher>(); field in class:AnalyzerGuru
174 matchers.addAll(factory.getMatchers());
481 for (FileAnalyzerFactory.Matcher matcher : matchers) {
H A DFileAnalyzerFactory.java53 /** List of matchers which delegate files to different types of
55 private final List<Matcher> matchers; field in class:FileAnalyzerFactory
89 this.matchers = Collections.emptyList();
91 this.matchers = Collections.singletonList(matcher);
143 * Get matchers that map file contents to analyzer factories
146 * @return list of matchers
149 return matchers;
195 * Interface for matchers which map file contents to analyzer factories.

Completed in 10 milliseconds