Searched refs:bytes (Results 1 - 9 of 9) sorted by relevance

/opengrok-sun/test/org/opensolaris/opengrok/analysis/
H A DTextAnalyzerTest.java78 byte[] bytes = new byte[utf16str.remaining()];
79 utf16str.get(bytes, 0, bytes.length);
82 new ByteArrayInputStream(bytes));
92 byte[] bytes = new byte[utf16str.remaining()];
93 utf16str.get(bytes, 0, bytes.length);
95 for (int i = 0; i < bytes.length; i += 2) {
96 byte b = bytes[i];
97 bytes[
[all...]
H A DAnalyzerGuruTest.java75 byte[] bytes = {(byte) 0xEF, (byte) 0xBB, (byte) 0xBF, // UTF-8 BOM
79 ByteArrayInputStream in = new ByteArrayInputStream(bytes);
/opengrok-sun/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java195 ByteArrayOutputStream bytes = new ByteArrayOutputStream();
196 new ObjectOutputStream(bytes).writeObject(this);
197 return bytes.toByteArray();
202 * @param bytes a byte array containing the {@code Definitions} object
210 public static Definitions deserialize(byte[] bytes) argument
213 new ObjectInputStream(new ByteArrayInputStream(bytes));
/opengrok-sun/src/org/opensolaris/opengrok/util/
H A DExecutor.java286 private final ByteArrayOutputStream bytes = new ByteArrayOutputStream(); field in class:Executor.SpoolHandler
289 return bytes.toByteArray();
299 bytes.write(buffer, 0, len);
/opengrok-sun/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/opengrok-sun/src/org/opensolaris/opengrok/search/
H A DResults.java198 tags = Definitions.deserialize(tagsField.binaryValue().bytes);
H A DSearchEngine.java344 tags = Definitions.deserialize(tagsField.binaryValue().bytes);
/opengrok-sun/src/org/opensolaris/opengrok/web/
H A DSearchHelper.java292 byte[] rawTags = doc.getField("tags").binaryValue().bytes;
/opengrok-sun/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java1131 return Definitions.deserialize(tags.binaryValue().bytes);

Completed in 20 milliseconds