Searched refs:op (Results 1 - 9 of 9) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/util/
H A DQueryNodeOperation.java54 ANDOperation op = null;
56 op = ANDOperation.BOTH;
58 op = ANDOperation.Q1;
60 op = ANDOperation.Q2;
62 op = ANDOperation.NONE;
66 switch (op) {
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/precedence/processors/
H A DBooleanModifiersQueryNodeProcessor.java63 Operator op = getQueryConfigHandler().get(ConfigurationKeys.DEFAULT_OPERATOR);
65 if (op == null) {
70 this.usingAnd = StandardQueryConfigHandler.Operator.AND == op;
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DTestFieldCache.java230 final int op = random.nextInt(3);
231 if (op == 0) {
238 } else if (op == 1) {
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DTestFieldCache.java230 final int op = random.nextInt(3);
231 if (op == 0) {
238 } else if (op == 1) {
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/
H A DQueryParserWrapper.java335 public void setDefaultOperator(Operator op) { argument
338 .setDefaultOperator(OR_OPERATOR.equals(op) ? org.apache.lucene.queryParser.standard.config.DefaultOperatorAttribute.Operator.OR
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/search/
H A DQueryUtils.java314 int op = order[(opidx[0]++) % order.length];
315 // System.out.println(op==skip_op ?
317 boolean more = op == skip_op ? scorer.advance(scorer.docID() + 1) != DocIdSetIterator.NO_MORE_DOCS
341 + (op == skip_op ? " skip()" : " next()"));
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/search/
H A DQueryUtils.java318 int op = order[(opidx[0]++) % order.length];
319 // System.out.println(op==skip_op ?
321 boolean more = op == skip_op ? scorer.advance(scorer.docID() + 1) != DocIdSetIterator.NO_MORE_DOCS
345 + (op == skip_op ? " skip()" : " next()"));
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/queryParser/
H A DQueryParser.jj385 public void setDefaultOperator(Operator op) {
386 this.operator = op;
H A DQueryParser.java361 public void setDefaultOperator(Operator op) { argument
362 this.operator = op;

Completed in 1158 milliseconds