/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/processors/ |
H A D | ParametricRangeQueryNodeProcessor.java | 76 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 D | ComplexPhraseQueryParser.java | 164 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 D | TestRangeQuery.java | 235 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 D | SolrQueryParser.java | 210 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 D | ExtendedDismaxQParserPlugin.java | 985 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 D | MultiFieldQueryParser.java | 206 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 D | QueryParser.jj | 795 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 D | QueryParser.java | 771 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 D | AnalyzingQueryParser.java | 288 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 D | QueryParserWrapper.java | 445 boolean inclusive) throws ParseException { 444 getRangeQuery(String field, String part1, String part2, boolean inclusive) argument
|