Searched refs:target (Results 1 - 25 of 159) sorted by relevance

1234567

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/fst/
H A DBytesRefFSTEnum.java33 private BytesRef target; field in class:BytesRefFSTEnum
43 * term before target. */
60 /** Seeks to smallest term that's >= target. */
61 public InputOutput<T> seekCeil(BytesRef target) throws IOException { argument
62 this.target = target;
63 targetLength = target.length;
68 /** Seeks to biggest term that's <= target. */
69 public InputOutput<T> seekFloor(BytesRef target) throws IOException { argument
70 this.target
80 seekExact(BytesRef target) argument
[all...]
H A DIntsRefFSTEnum.java33 private IntsRef target; field in class:IntsRefFSTEnum
43 * term before target. */
60 /** Seeks to smallest term that's >= target. */
61 public InputOutput<T> seekCeil(IntsRef target) throws IOException { argument
62 this.target = target;
63 targetLength = target.length;
68 /** Seeks to biggest term that's <= target. */
69 public InputOutput<T> seekFloor(IntsRef target) throws IOException { argument
70 this.target
80 seekExact(IntsRef target) argument
[all...]
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DInstantiatedTerm.java97 * greater than or equal to <i>target</i>, -1 if there is no such element.
99 * @param target the document number to match
102 public int seekCeilingDocumentInformationIndex(int target) { argument
103 return seekCeilingDocumentInformationIndex(target, 0, getAssociatedDocuments().length);
108 * greater than or equal to <i>target</i>, -1 if there is no such element.
110 * @param target the document number to match
114 public int seekCeilingDocumentInformationIndex(int target, int startOffset) { argument
115 return seekCeilingDocumentInformationIndex(target, startOffset, getAssociatedDocuments().length);
120 * greater than or equal to <i>target</i>, -1 if there is no such element.
122 * @param target th
127 seekCeilingDocumentInformationIndex(int target, int startOffset, int endPosition) argument
143 binarySearchAssociatedDocuments(int target) argument
147 binarySearchAssociatedDocuments(int target, int offset) argument
157 binarySearchAssociatedDocuments(int target, int offset, int length) argument
[all...]
H A DInstantiatedTermPositions.java83 * greater than or equal to <currentTermPositionIndex>target</currentTermPositionIndex>. <p>Returns true iff there is such
85 * boolean skipTo(int target) {
89 * } while (target > doc());
96 public boolean skipTo(int target) { argument
98 return super.skipTo(target);
/lucene-3.6.0/dev-tools/scripts/
H A DLUCENE-3753.patch.hack.pl84 my $target = $moves[$move_pos + 1];
86 $diff =~ s/^Index: \Q$source\E/Index: $target/;
87 $diff =~ s/\n--- \Q$source\E/\n--- $target/;
88 $diff =~ s/\n\+\+\+ \Q$source\E/\n+++ $target/;
89 $diff =~ s/\nProperty changes on: \Q$source\E/\nProperty changes on: $target/;
97 my $target = $copies[$copy_pos + 1];
100 $new_diff =~ s/^Index: \Q$source\E/Index: $target/;
101 $new_diff =~ s/\n--- \Q$source\E/\n--- $target/;
102 $new_diff =~ s/\n\+\+\+ \Q$source\E/\n+++ $target/;
103 $new_diff =~ s/\nProperty changes on: \Q$source\E/\nProperty changes on: $target/;
[all...]
H A DSOLR-2452.patch.hack.pl206 my $target = $moves[$move_pos + 1];
208 $diff =~ s/^Index: \Q$source\E/Index: $target/;
209 $diff =~ s/\n--- \Q$source\E/\n--- $target/;
210 $diff =~ s/\n\+\+\+ \Q$source\E/\n+++ $target/;
211 $diff =~ s/\nProperty changes on: \Q$source\E/\nProperty changes on: $target/;
219 my $target = $copies[$copy_pos + 1];
222 $new_diff =~ s/^Index: \Q$source\E/Index: $target/;
223 $new_diff =~ s/\n--- \Q$source\E/\n--- $target/;
224 $new_diff =~ s/\n\+\+\+ \Q$source\E/\n+++ $target/;
225 $new_diff =~ s/\nProperty changes on: \Q$source\E/\nProperty changes on: $target/;
[all...]
/lucene-3.6.0/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/spans/
H A DUniqueFieldAttributeImpl.java58 public void copyTo(AttributeImpl target) { argument
60 if (!(target instanceof UniqueFieldAttributeImpl)) {
63 + target.getClass().getName());
66 UniqueFieldAttributeImpl uniqueFieldAttr = (UniqueFieldAttributeImpl) target;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DDocIdSetIterator.java65 * number is greater than or equal to <i>target</i>. Returns the current
72 * int advance(int target) {
74 * while ((doc = nextDoc()) &lt; target) {
82 * <b>NOTE:</b> when <code> target &le; current</code> implementations may opt
96 public abstract int advance(int target) throws IOException; argument
H A DFieldCacheDocIdSet.java76 public int advance(int target) {
77 for(doc=target; doc<maxDoc; doc++) {
106 public int advance(int target) throws IOException {
107 if (!termDocs.skipTo(target))
H A DFilteredDocIdSetIterator.java68 public int advance(int target) throws IOException { argument
69 doc = _innerIter.advance(target);
H A DReqOptSumScorer.java52 public int advance(int target) throws IOException { argument
53 return reqScorer.advance(target);
H A DScoreCachingWrappingScorer.java82 public int advance(int target) throws IOException { argument
83 return scorer.advance(target);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/
H A DRangeMapFloatFunction.java38 protected final float target; field in class:RangeMapFloatFunction
41 public RangeMapFloatFunction(ValueSource source, float min, float max, float target, Float def) { argument
45 this.target = target;
51 return "map(" + source.description() + "," + min + "," + max + "," + target + ")";
61 return (val>=min && val<=max) ? target : (defaultVal == null ? val : defaultVal);
81 return "map(" + vals.toString(doc) + ",min=" + min + ",max=" + max + ",target=" + target + ")";
99 h += Float.floatToIntBits(target);
111 && this.target
[all...]
H A DValueSourceScorer.java73 public int advance(int target) throws IOException { argument
74 // also works fine when target==NO_MORE_DOCS
75 doc = target - 1;
91 public boolean skipTo(int target) { argument
92 doc = target - 1;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/
H A DFlagsAttributeImpl.java76 public void copyTo(AttributeImpl target) { argument
77 FlagsAttribute t = (FlagsAttribute) target;
H A DKeywordAttributeImpl.java40 public void copyTo(AttributeImpl target) { argument
41 KeywordAttribute attr = (KeywordAttribute) target;
H A DOffsetAttributeImpl.java86 public void copyTo(AttributeImpl target) { argument
87 OffsetAttribute t = (OffsetAttribute) target;
H A DPositionIncrementAttributeImpl.java96 public void copyTo(AttributeImpl target) { argument
97 PositionIncrementAttribute t = (PositionIncrementAttribute) target;
H A DPositionLengthAttributeImpl.java70 public void copyTo(AttributeImpl target) { argument
71 PositionLengthAttribute t = (PositionLengthAttribute) target;
H A DTypeAttributeImpl.java74 public void copyTo(AttributeImpl target) { argument
75 TypeAttribute t = (TypeAttribute) target;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpans.java32 * greater than or equal to <i>target</i>. <p>Returns true iff there is such
34 * boolean skipTo(int target) {
38 * } while (target > doc());
44 public abstract boolean skipTo(int target) throws IOException; argument
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DAbstractAllTermDocs.java76 public boolean skipTo(int target) throws IOException { argument
77 doc = target;
H A DTermDocs.java65 * greater than or equal to <i>target</i>. <p>Returns true iff there is such
67 * boolean skipTo(int target) {
71 * } while (target > doc());
77 boolean skipTo(int target) throws IOException; argument
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DDocIdBitSet.java76 public int advance(int target) { argument
77 int d = bitSet.nextSetBit(target);
/lucene-3.6.0/lucene/contrib/analyzers/kuromoji/src/java/org/apache/lucene/analysis/ja/tokenattributes/
H A DBaseFormAttributeImpl.java44 public void copyTo(AttributeImpl target) { argument
45 BaseFormAttribute t = (BaseFormAttribute) target;

Completed in 3844 milliseconds

1234567