Searched refs:reInit (Results 1 - 23 of 23) sorted by relevance

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/encoding/
H A DIntEncoderFilter.java33 * encoder and {@link #reInit(OutputStream)} by re-initializing the wrapped
54 public void reInit(OutputStream out) { method in class:IntEncoderFilter
55 encoder.reInit(out);
H A DChunksIntEncoder.java97 public void reInit(OutputStream out) { method in class:ChunksIntEncoder
98 encoder.reInit(out);
99 super.reInit(out);
H A DEightFlagsIntDecoder.java79 public void reInit(InputStream in) { method in class:EightFlagsIntDecoder
80 super.reInit(in);
81 decoder.reInit(in);
H A DFourFlagsIntDecoder.java80 public void reInit(InputStream in) { method in class:FourFlagsIntDecoder
81 super.reInit(in);
82 decoder.reInit(in);
H A DDGapIntDecoder.java52 public void reInit(InputStream in) { method in class:DGapIntDecoder
53 decoder.reInit(in);
H A DDGapIntEncoder.java59 public void reInit(OutputStream out) { method in class:DGapIntEncoder
60 super.reInit(out);
H A DNOnesIntDecoder.java69 public void reInit(InputStream in) { method in class:NOnesIntDecoder
70 super.reInit(in);
H A DNOnesIntEncoder.java105 public void reInit(OutputStream out) { method in class:NOnesIntEncoder
106 super.reInit(out);
H A DUniqueValuesIntEncoder.java61 public void reInit(OutputStream out) { method in class:UniqueValuesIntEncoder
62 super.reInit(out);
H A DIntDecoder.java25 * decoder's input stream can be set by ({@link #reInit(InputStream)}).
39 public void reInit(InputStream in) { method in class:IntDecoder
H A DIntEncoder.java30 * only. One must call {@link #reInit(OutputStream)} before calling
61 * the output stream which was specified by {@link #reInit(OutputStream)
62 * reInit}. An implementation may do here additional cleanup required to
65 * encode} should be made before first calling {@link #reInit(OutputStream)
66 * reInit}.
79 * {@link #reInit(OutputStream) reInit}
109 public void reInit(OutputStream out) { method in class:IntEncoder
H A DSortingIntEncoder.java75 public void reInit(OutputStream out) { method in class:SortingIntEncoder
76 super.reInit(out);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/
H A DUnsafeByteArrayInputStream.java32 * For reuse-ability, a call for {@link #reInit(byte[])} can be called, and
46 * constructor, you MUST call either of the {@link #reInit(byte[]) reInit}
51 * call either {@link #reInit(byte[]) reInit} methods before using the class.
65 reInit(buffer, 0, buffer.length);
81 reInit(buffer, startPos, endPos);
101 public void reInit(byte[] buffer) { method in class:UnsafeByteArrayInputStream
102 reInit(buffer, 0, buffer.length);
117 public void reInit(byt method in class:UnsafeByteArrayInputStream
[all...]
H A DUnsafeByteArrayOutputStream.java46 reInit(new byte[32], 0);
57 reInit(buffer, 0);
70 reInit(buffer, startPos);
88 public void reInit(byte[] buffer, int startPos) { method in class:UnsafeByteArrayOutputStream
103 public void reInit(byte[] buffer) { method in class:UnsafeByteArrayOutputStream
104 reInit(buffer, 0);
176 * used {@link #reInit(byte[], int)} or
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/
H A DCategoryListPayloadStream.java39 this.encoder.reInit(baos);
62 encoder.reInit(baos);
H A DFacetsPayloadProcessorProvider.java172 decoder.reInit(is);
174 encoder.reInit(os);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DPayloadIntDecodingIterator.java112 ubais.reInit(pi.getBuffer(), 0, pi.getPayloadLength());
113 decoder.reInit(ubais);
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/index/
H A DCategoryListPayloadStreamTest.java61 decoder.reInit(bais);
76 decoder.reInit(bais);
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/encoding/
H A DEncodingSpeed.java103 encoder.reInit(baos);
114 encoder.reInit(baos);
126 decoder.reInit(bais);
134 decoder.reInit(bais);
138 decoder.reInit(bais);
145 decoder.reInit(bais);
H A DEncodingTest.java56 enc.reInit(baos);
60 dec.reInit(new ByteArrayInputStream(baos.toByteArray()));
130 encoder.reInit(baos);
137 encoder.reInit(baos);
147 decoder.reInit(bais);
159 decoder.reInit(bais);
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/search/
H A DCategoryListIteratorTest.java81 ubaos.reInit(buf);
82 encoder.reInit(ubaos);
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/
H A DUnsafeByteArrayOutputStreamTest.java136 ubaos.reInit(buffer2);
208 ubaos.reInit(new byte[0]);
H A DUnsafeByteArrayInputStreamTest.java101 ubais.reInit(buffer2);

Completed in 122 milliseconds