/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/queryParser/ |
H A D | MultiFieldQueryParser.java | 178 protected Query getPrefixQuery(String field, String termStr) throws ParseException method in class:MultiFieldQueryParser 183 clauses.add(new BooleanClause(getPrefixQuery(fields[i], termStr), 188 return super.getPrefixQuery(field, termStr);
|
H A D | QueryParser.jj | 1045 protected Query getPrefixQuery(String field, String termStr) throws ParseException 1371 q = getPrefixQuery(field,
|
H A D | QueryParser.java | 1021 protected Query getPrefixQuery(String field, String termStr) throws ParseException method in class:QueryParser 1416 q = getPrefixQuery(field,
|
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/analyzing/ |
H A D | AnalyzingQueryParser.java | 196 protected Query getPrefixQuery(String field, String termStr) throws ParseException { method in class:AnalyzingQueryParser 224 return super.getPrefixQuery(field, tlist.get(0));
|
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/surround/parser/ |
H A D | QueryParser.jj | 145 protected SrndQuery getPrefixQuery( 417 return getPrefixQuery(term.image.substring(0, term.image.length()-1), false /* not quoted */); 431 return getPrefixQuery(term.image.substring(1, term.image.length()-2), true /* quoted */);
|
H A D | QueryParser.java | 116 protected SrndQuery getPrefixQuery( method in class:QueryParser 424 {if (true) return getPrefixQuery(term.image.substring(0, term.image.length()-1), false /* not quoted */);} 440 {if (true) return getPrefixQuery(term.image.substring(1, term.image.length()-2), true /* quoted */);}
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/ |
H A D | SolrQueryParser.java | 217 protected Query getPrefixQuery(String field, String termStr) throws ParseException { method in class:SolrQueryParser
|
H A D | ExtendedDismaxQParserPlugin.java | 974 protected Query getPrefixQuery(String field, String val) throws ParseException { method in class:ExtendedDismaxQParser.ExtendedSolrQueryParser 1000 return getPrefixQuery(field,""); 1133 case PREFIX: return super.getPrefixQuery(field, val);
|
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/ |
H A D | QueryParserWrapper.java | 395 protected Query getPrefixQuery(String field, String termStr) method in class:QueryParserWrapper
|
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/queryParser/ |
H A D | QueryParserTestBase.java | 975 protected Query getPrefixQuery(String field, String termStr) throws ParseException {
|
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/queryParser/ |
H A D | QueryParserTestBase.java | 967 protected Query getPrefixQuery(String field, String termStr) throws ParseException {
|