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

/lucene-3.6.0/lucene/contrib/highlighter/src/java/org/apache/lucene/search/highlight/
H A DQueryTermExtractor.java90 * @param prohibited <code>true</code> to extract "prohibited" terms, too
94 public static final WeightedTerm[] getTerms(Query query, boolean prohibited, String fieldName) argument
101 getTerms(query,terms,prohibited,fieldName);
109 * @param prohibited <code>true</code> to extract "prohibited" terms, too
112 public static final WeightedTerm[] getTerms(Query query, boolean prohibited) argument
114 return getTerms(query,prohibited,null);
118 private static final void getTerms(Query query, HashSet<WeightedTerm> terms,boolean prohibited, String fieldName) argument
123 getTermsFromBooleanQuery((BooleanQuery) query, terms, prohibited, fieldNam
158 getTermsFromBooleanQuery(BooleanQuery query, HashSet<WeightedTerm> terms, boolean prohibited, String fieldName) argument
167 getTermsFromFilteredQuery(FilteredQuery query, HashSet<WeightedTerm> terms, boolean prohibited, String fieldName) argument
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DBooleanScorer.java176 public boolean prohibited; field in class:BooleanScorer.SubScorer
180 public SubScorer(Scorer scorer, boolean required, boolean prohibited, argument
189 this.prohibited = prohibited;
203 // Any time a prohibited clause matches we set bit 0:
249 // check prohibited & required
345 if (!sub.prohibited) {
H A DBooleanScorer2.java42 int maxCoord = 0; // to be increased for each non prohibited scorer
67 * prohibited and optional scorers. In no required scorers are added, at least
81 * @param prohibited
82 * the list of prohibited scorers.
87 List<Scorer> required, List<Scorer> prohibited, List<Scorer> optional, int maxCoord) throws IOException {
98 prohibitedScorers = prohibited;
267 ? requiredCountingSumScorer // no prohibited
86 BooleanScorer2(Weight weight, boolean disableCoord, Similarity similarity, int minNrShouldMatch, List<Scorer> required, List<Scorer> prohibited, List<Scorer> optional, int maxCoord) argument

Completed in 31 milliseconds