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

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DIndexableBinaryStringTools.java82 * @deprecated Use {@link #getEncodedLength(byte[], int, int)} instead. This
86 public static int getEncodedLength(ByteBuffer original) method in class:IndexableBinaryStringTools
89 return getEncodedLength(original.array(), original.arrayOffset(),
104 public static int getEncodedLength(byte[] inputArray, int inputOffset, method in class:IndexableBinaryStringTools
155 * capacity by calling {@link #getEncodedLength(java.nio.ByteBuffer)}.
171 final int outputLength = getEncodedLength(input.array(), inputOffset,
185 * capacity by calling {@link #getEncodedLength(byte[], int, int)}.
192 * @param outputLength length of output, must be getEncodedLength
196 assert (outputLength == getEncodedLength(inputArray, inputOffset,
367 char[] outputArray = new char[getEncodedLength(inpu
[all...]

Completed in 16 milliseconds