Searched defs:reset (Results 1 - 25 of 146) sorted by relevance

123456

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DLimitTokenCountFilter.java49 public void reset() throws IOException { method in class:LimitTokenCountFilter
50 super.reset();
H A DTokenFilter.java53 public void reset() throws IOException { method in class:TokenFilter
54 input.reset();
H A DCachingTokenFilter.java33 * {@link TokenStream#reset()}, which repositions the
58 // Since the TokenFilter can be reset, the tokens need to be preserved as immutable.
71 public void reset() throws IOException { method in class:CachingTokenFilter
H A DFilteringTokenFilter.java77 public void reset() throws IOException { method in class:FilteringTokenFilter
78 super.reset();
H A DTokenStream.java57 * <li>The consumer calls {@link TokenStream#reset()}.
171 * subclasses may or may not implement this method. {@link #reset()} is not needed for
174 * necessary to implement {@link #reset()}. Note that if your TokenStream
175 * caches tokens and feeds them back again after a reset, it is imperative
177 * well as when you return them (on future passes after {@link #reset()}).
179 public void reset() throws IOException {} method in class:TokenStream
H A DTokenizer.java100 public void reset(Reader input) throws IOException { method in class:Tokenizer
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/
H A DCategoryListPayloadStream.java59 public void reset() throws IOException { method in class:CategoryListPayloadStream
61 baos.reset();
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/streaming/
H A DCategoryAttributesStream.java37 * then call {@link #reset()} to allow this stream to be used again.
77 public void reset() { method in class:CategoryAttributesStream
H A DCategoryListTokenizer.java59 public void reset() throws IOException { method in class:CategoryListTokenizer
60 super.reset();
/lucene-3.6.0/lucene/contrib/highlighter/src/java/org/apache/lucene/search/highlight/
H A DOffsetLimitTokenFilter.java52 public void reset() throws IOException { method in class:OffsetLimitTokenFilter
53 super.reset();
H A DTokenStreamFromTermPositionVector.java108 public void reset() throws IOException { method in class:TokenStreamFromTermPositionVector
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DCharBlockPool.java39 public void reset() { method in class:CharBlockPool
H A DIntBlockPool.java36 public void reset() { method in class:IntBlockPool
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DByteArrayDataOutput.java35 reset(bytes);
39 reset(bytes, offset, len);
43 reset(BytesRef.EMPTY_BYTES);
46 public void reset(byte[] bytes) { method in class:ByteArrayDataOutput
47 reset(bytes, 0, bytes.length);
50 public void reset(byte[] bytes, int offset, int len) { method in class:ByteArrayDataOutput
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTest2BPostings.java102 public void reset() throws IOException { method in class:Test2BPostings.MyTokenStream
/lucene-3.6.0/solr/contrib/dataimporthandler/src/test/org/apache/solr/handler/dataimport/
H A DTestEphemeralCache.java37 public void reset() { method in class:TestEphemeralCache
/lucene-3.6.0/solr/core/src/java/org/apache/solr/analysis/
H A DCommonGramsQueryFilter.java67 public void reset() throws IOException { method in class:CommonGramsQueryFilter
68 super.reset();
H A DHyphenatedWordsFilter.java119 public void reset() throws IOException { method in class:HyphenatedWordsFilter
120 super.reset();
H A DPatternTokenizer.java132 public void reset(Reader input) throws IOException { method in class:PatternTokenizer
133 super.reset(input);
135 matcher.reset(str);
H A DRemoveDuplicatesTokenFilter.java81 public void reset() throws IOException { method in class:RemoveDuplicatesTokenFilter
82 super.reset();
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTest2BPostings.java102 public void reset() throws IOException { method in class:Test2BPostings.MyTokenStream
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/miscellaneous/
H A DSingleTokenTokenStream.java61 public void reset() throws IOException { method in class:SingleTokenTokenStream
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/position/
H A DPositionFilter.java78 public void reset() throws IOException { method in class:PositionFilter
79 super.reset();
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/sinks/
H A DTokenRangeSinkFilter.java53 public void reset() throws IOException { method in class:TokenRangeSinkFilter
/lucene-3.6.0/lucene/contrib/analyzers/phonetic/src/java/org/apache/lucene/analysis/phonetic/
H A DDoubleMetaphoneFilter.java107 public void reset() throws IOException { method in class:DoubleMetaphoneFilter
108 input.reset();

Completed in 124 milliseconds

123456