Searched defs:copyBytes (Results 1 - 14 of 14) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DIndexInput.java102 public void copyBytes(IndexOutput out, long numBytes) throws IOException { method in class:IndexInput
H A DDataOutput.java121 public void copyBytes(DataInput input, long numBytes) throws IOException { method in class:DataOutput
H A DBufferedIndexInput.java340 public void copyBytes(IndexOutput out, long numBytes) throws IOException { method in class:BufferedIndexInput
H A DRAMInputStream.java115 public void copyBytes(IndexOutput out, long numBytes) throws IOException { method in class:RAMInputStream
H A DRAMOutputStream.java165 public void copyBytes(DataInput input, long numBytes) throws IOException { method in class:RAMOutputStream
H A DSimpleFSDirectory.java177 public void copyBytes(IndexOutput out, long numBytes) throws IOException { method in class:SimpleFSDirectory.SimpleFSIndexInput
180 out.copyBytes(this, numBytes);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/store/
H A DMockIndexOutputWrapper.java154 public void copyBytes(DataInput input, long numBytes) throws IOException { method in class:MockIndexOutputWrapper
155 delegate.copyBytes(input, numBytes);
H A DMockIndexInputWrapper.java122 public void copyBytes(IndexOutput out, long numBytes) throws IOException { method in class:MockIndexInputWrapper
124 delegate.copyBytes(out, numBytes);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/store/
H A DMockIndexOutputWrapper.java154 public void copyBytes(DataInput input, long numBytes) throws IOException { method in class:MockIndexOutputWrapper
155 delegate.copyBytes(input, numBytes);
H A DMockIndexInputWrapper.java122 public void copyBytes(IndexOutput out, long numBytes) throws IOException { method in class:MockIndexInputWrapper
124 delegate.copyBytes(out, numBytes);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DBytesRef.java220 public void copyBytes(BytesRef other) { method in class:BytesRef
356 copy.copyBytes(other);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DThrottledIndexOutput.java149 public void copyBytes(DataInput input, long numBytes) throws IOException { method in class:ThrottledIndexOutput
150 delegate.copyBytes(input, numBytes);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DThrottledIndexOutput.java146 public void copyBytes(DataInput input, long numBytes) throws IOException { method in class:ThrottledIndexOutput
147 delegate.copyBytes(input, numBytes);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DCompoundFileReader.java297 public void copyBytes(IndexOutput out, long numBytes) throws IOException { method in class:CompoundFileReader.CSIndexInput
309 base.copyBytes(out, numBytes);

Completed in 61 milliseconds