| /lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/encoding/ |
| H A D | IntEncoderFilter.java | 33 * 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 D | ChunksIntEncoder.java | 97 public void reInit(OutputStream out) { method in class:ChunksIntEncoder 98 encoder.reInit(out); 99 super.reInit(out);
|
| H A D | EightFlagsIntDecoder.java | 79 public void reInit(InputStream in) { method in class:EightFlagsIntDecoder 80 super.reInit(in); 81 decoder.reInit(in);
|
| H A D | FourFlagsIntDecoder.java | 80 public void reInit(InputStream in) { method in class:FourFlagsIntDecoder 81 super.reInit(in); 82 decoder.reInit(in);
|
| H A D | DGapIntDecoder.java | 52 public void reInit(InputStream in) { method in class:DGapIntDecoder 53 decoder.reInit(in);
|
| H A D | DGapIntEncoder.java | 59 public void reInit(OutputStream out) { method in class:DGapIntEncoder 60 super.reInit(out);
|
| H A D | NOnesIntDecoder.java | 69 public void reInit(InputStream in) { method in class:NOnesIntDecoder 70 super.reInit(in);
|
| H A D | NOnesIntEncoder.java | 105 public void reInit(OutputStream out) { method in class:NOnesIntEncoder 106 super.reInit(out);
|
| H A D | UniqueValuesIntEncoder.java | 61 public void reInit(OutputStream out) { method in class:UniqueValuesIntEncoder 62 super.reInit(out);
|
| H A D | IntDecoder.java | 25 * decoder's input stream can be set by ({@link #reInit(InputStream)}). 39 public void reInit(InputStream in) { method in class:IntDecoder
|
| H A D | IntEncoder.java | 30 * 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 D | SortingIntEncoder.java | 75 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 D | UnsafeByteArrayInputStream.java | 32 * 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 D | UnsafeByteArrayOutputStream.java | 46 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 D | CategoryListPayloadStream.java | 39 this.encoder.reInit(baos); 62 encoder.reInit(baos);
|
| H A D | FacetsPayloadProcessorProvider.java | 172 decoder.reInit(is); 174 encoder.reInit(os);
|
| /lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/ |
| H A D | PayloadIntDecodingIterator.java | 112 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 D | CategoryListPayloadStreamTest.java | 61 decoder.reInit(bais); 76 decoder.reInit(bais);
|
| /lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/encoding/ |
| H A D | EncodingSpeed.java | 103 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 D | EncodingTest.java | 56 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 D | CategoryListIteratorTest.java | 81 ubaos.reInit(buf); 82 encoder.reInit(ubaos);
|
| /lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/ |
| H A D | UnsafeByteArrayOutputStreamTest.java | 136 ubaos.reInit(buffer2); 208 ubaos.reInit(new byte[0]);
|
| H A D | UnsafeByteArrayInputStreamTest.java | 101 ubais.reInit(buffer2);
|