Searched defs:target (Results 1 - 25 of 120) sorted by relevance

12345

/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/spell/
H A DLevensteinDistance.java36 public float getDistance (String target, String other) { argument
60 sa = target.toCharArray();
H A DNGramDistance.java53 public float getDistance(String source, String target) { argument
55 final int tl = target.length();
69 if (source.charAt(i) == target.charAt(i)) {
95 int j; // iterates through target
110 t_j[ti]=target.charAt(ti-(n-j));
114 t_j = target.substring(j-n, j).toCharArray();
/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 DConjunctionScorer.java106 public int advance(int target) throws IOException { argument
109 } else if (scorers[(scorers.length - 1)].docID() < target) {
110 scorers[(scorers.length - 1)].advance(target);
H A DFilteredDocIdSetIterator.java68 public int advance(int target) throws IOException { argument
69 doc = _innerIter.advance(target);
H A DReqExclScorer.java107 public int advance(int target) throws IOException { argument
112 return doc = reqScorer.advance(target);
114 if (reqScorer.advance(target) == NO_MORE_DOCS) {
H A DReqOptSumScorer.java52 public int advance(int target) throws IOException { argument
53 return reqScorer.advance(target);
/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 DPayloadAttributeImpl.java95 public void copyTo(AttributeImpl target) { argument
96 PayloadAttribute t = (PayloadAttribute) 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/util/
H A DDocIdBitSet.java76 public int advance(int target) { argument
77 int d = bitSet.nextSetBit(target);
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DTestPositiveScoresOnlyCollector.java47 @Override public int advance(int target) throws IOException { argument
48 idx = target;
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DTestPositiveScoresOnlyCollector.java47 @Override public int advance(int target) throws IOException { argument
48 idx = 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;
H A DInflectionAttributeImpl.java49 public void copyTo(AttributeImpl target) { argument
50 InflectionAttribute t = (InflectionAttribute) target;
H A DPartOfSpeechAttributeImpl.java45 public void copyTo(AttributeImpl target) { argument
46 PartOfSpeechAttribute t = (PartOfSpeechAttribute) target;
H A DReadingAttributeImpl.java49 public void copyTo(AttributeImpl target) { argument
50 ReadingAttribute t = (ReadingAttribute) target;
/lucene-3.6.0/lucene/contrib/icu/src/java/org/apache/lucene/analysis/icu/tokenattributes/
H A DScriptAttributeImpl.java57 public void copyTo(AttributeImpl target) { argument
58 ScriptAttribute t = (ScriptAttribute) target;
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
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/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/config/
H A DAllowLeadingWildcardAttributeImpl.java60 public void copyTo(AttributeImpl target) { argument

Completed in 23 milliseconds

12345