Searched refs:inclusive (Results 1 - 10 of 10) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/processors/
H A DParametricRangeQueryNodeProcessor.java76 boolean inclusive = false;
100 inclusive = true;
103 inclusive = true;
114 if (inclusive) {
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/complexPhrase/
H A DComplexPhraseQueryParser.java164 boolean inclusive) throws ParseException {
168 return super.getRangeQuery(field, part1, part2, inclusive);
173 boolean inclusive) {
177 TermRangeQuery rangeQuery = new TermRangeQuery(field, part1, part2, inclusive, inclusive,
182 return super.newRangeQuery(field, part1, part2, inclusive);
163 getRangeQuery(String field, String part1, String part2, boolean inclusive) argument
172 newRangeQuery(String field, String part1, String part2, boolean inclusive) argument
/lucene-3.6.0/solr/core/src/test/org/apache/solr/search/
H A DTestRangeQuery.java235 boolean inclusive = lowerMissing || upperMissing || r.nextBoolean();
237 // lower=2; upper=2; inclusive=true;
238 // inclusive=true; lowerMissing=true; upperMissing=true;
242 String q = field + ':' + (inclusive?'[':'{')
246 + (inclusive?']':'}');
253 + (inclusive?"":" incl=false")
254 + (inclusive?"":" incu=false")
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DSolrQueryParser.java210 protected Query getRangeQuery(String field, String part1, String part2, boolean inclusive) throws ParseException { argument
213 return sf.getType().getRangeQuery(parser, sf, part1, part2, inclusive, inclusive);
H A DExtendedDismaxQParserPlugin.java985 protected Query getRangeQuery(String field, String a, String b, boolean inclusive) throws ParseException { argument
990 this.bool = inclusive;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/queryParser/
H A DMultiFieldQueryParser.java206 protected Query getRangeQuery(String field, String part1, String part2, boolean inclusive) throws ParseException { argument
210 clauses.add(new BooleanClause(getRangeQuery(fields[i], part1, part2, inclusive),
215 return super.getRangeQuery(field, part1, part2, inclusive);
H A DQueryParser.jj795 boolean inclusive) throws ParseException
818 if (inclusive) {
840 return newRangeQuery(field, part1, part2, inclusive);
915 * @param inclusive true if range is inclusive
918 protected Query newRangeQuery(String field, String part1, String part2, boolean inclusive) {
919 final TermRangeQuery query = new TermRangeQuery(field, part1, part2, inclusive, inclusive, rangeCollator);
H A DQueryParser.java771 boolean inclusive) throws ParseException
794 if (inclusive) {
816 return newRangeQuery(field, part1, part2, inclusive);
891 * @param inclusive true if range is inclusive
894 protected Query newRangeQuery(String field, String part1, String part2, boolean inclusive) { argument
895 final TermRangeQuery query = new TermRangeQuery(field, part1, part2, inclusive, inclusive, rangeCollator);
768 getRangeQuery(String field, String part1, String part2, boolean inclusive) argument
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/analyzing/
H A DAnalyzingQueryParser.java288 protected Query getRangeQuery(String field, String part1, String part2, boolean inclusive) argument
366 return super.getRangeQuery(field, part1, part2, inclusive);
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/
H A DQueryParserWrapper.java445 boolean inclusive) throws ParseException {
444 getRangeQuery(String field, String part1, String part2, boolean inclusive) argument

Completed in 52 milliseconds