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

/opengrok-jel/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-jel/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java202 ByteArrayOutputStream bytes = new ByteArrayOutputStream();
203 new ObjectOutputStream(bytes).writeObject(this);
204 return bytes.toByteArray();
209 * @param bytes a byte array containing the {@code Definitions} object
217 public static Definitions deserialize(byte[] bytes) argument
220 new ObjectInputStream(new ByteArrayInputStream(bytes));
/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DExecutor.java288 private final ByteArrayOutputStream bytes = new ByteArrayOutputStream(); field in class:Executor.SpoolHandler
291 return bytes.toByteArray();
301 bytes.write(buffer, 0, len);
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 21 milliseconds