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

/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestIndexableBinaryStringTools.java38 byte[] binary = new byte[]
42 ByteBuffer binaryBuf = ByteBuffer.wrap(binary);
56 byte[] binary = new byte[] { (byte) 0x23, (byte) 0x98, (byte) 0x13,
60 int encodedLen = IndexableBinaryStringTools.getEncodedLength(binary, 0,
61 binary.length);
63 IndexableBinaryStringTools.encode(binary, 0, binary.length, encoded, 0,
74 + binaryDump(binary, binary.length)
79 binaryDump(binary, binar
341 binaryDump(byte[] binary, int numBytes) argument
[all...]
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/util/
H A DTestIndexableBinaryStringTools.java38 byte[] binary = new byte[]
42 ByteBuffer binaryBuf = ByteBuffer.wrap(binary);
56 byte[] binary = new byte[] { (byte) 0x23, (byte) 0x98, (byte) 0x13,
60 int encodedLen = IndexableBinaryStringTools.getEncodedLength(binary, 0,
61 binary.length);
63 IndexableBinaryStringTools.encode(binary, 0, binary.length, encoded, 0,
74 + binaryDump(binary, binary.length)
79 binaryDump(binary, binar
341 binaryDump(byte[] binary, int numBytes) argument
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DFieldsReader.java248 boolean binary = (bits & FieldsWriter.FIELD_IS_BINARY) != 0;
253 addField(doc, fi, binary, compressed, tokenize, numeric);
256 addField(doc, fi, binary, compressed, tokenize, numeric);
259 addFieldLazy(doc, fi, binary, compressed, tokenize, true, numeric);
262 addFieldLazy(doc, fi, binary, compressed, tokenize, false, numeric);
265 skipFieldBytes(binary, compressed, addFieldSize(doc, fi, binary, compressed, numeric));
268 addFieldSize(doc, fi, binary, compressed, numeric);
271 skipField(binary, compressed, numeric);
308 private void skipField(boolean binary, boolea argument
329 skipFieldBytes(boolean binary, boolean compressed, int toRead) argument
354 addFieldLazy(Document doc, FieldInfo fi, boolean binary, boolean compressed, boolean tokenize, boolean cacheResult, int numeric) argument
393 addField(Document doc, FieldInfo fi, boolean binary, boolean compressed, boolean tokenize, int numeric) argument
440 addFieldSize(Document doc, FieldInfo fi, boolean binary, boolean compressed, int numeric) argument
[all...]

Completed in 955 milliseconds