/opengrok/test/org/opensolaris/opengrok/analysis/ |
H A D | TextAnalyzerTest.java | 45 private static StreamSource getStreamSource(final byte[] bytes) { argument 49 return new ByteArrayInputStream(bytes); 87 byte[] bytes = new byte[utf16str.remaining()]; 88 utf16str.get(bytes, 0, bytes.length); 91 getStreamSource(bytes), null); 101 byte[] bytes = new byte[utf16str.remaining()]; 102 utf16str.get(bytes, 0, bytes.length); 104 for (int i = 0; i < bytes [all...] |
H A D | AnalyzerGuruTest.java | 75 byte[] bytes = {(byte) 0xEF, (byte) 0xBB, (byte) 0xBF, // UTF-8 BOM 79 ByteArrayInputStream in = new ByteArrayInputStream(bytes);
|
/opengrok/src/org/opensolaris/opengrok/analysis/ |
H A D | Scopes.java | 151 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); 152 new ObjectOutputStream(bytes).writeObject(this); 153 return bytes.toByteArray(); 159 * @param bytes a byte array containing the {@code Definitions} object 167 public static Scopes deserialize(byte[] bytes) argument 170 = new ObjectInputStream(new ByteArrayInputStream(bytes));
|
H A D | Definitions.java | 252 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); 253 new ObjectOutputStream(bytes).writeObject(this); 254 return bytes.toByteArray(); 260 * @param bytes a byte array containing the {@code Definitions} object 268 public static Definitions deserialize(byte[] bytes) argument 271 = new ObjectInputStream(new ByteArrayInputStream(bytes));
|
/opengrok/src/org/opensolaris/opengrok/authorization/ |
H A D | AuthorizationPluginClassLoader.java | 93 byte[] bytes = loadBytes(is); 94 Class c = defineClass(classname, bytes, 0, bytes.length); 117 byte[] bytes = loadBytes(in); 119 Class c = defineClass(classname, bytes, 0, bytes.length); 135 byte[] bytes = new byte[in.available()]; 136 in.read(bytes); 137 return bytes;
|
/opengrok/src/org/opensolaris/opengrok/util/ |
H A D | Executor.java | 350 private final ByteArrayOutputStream bytes = new ByteArrayOutputStream(); field in class:Executor.SpoolHandler 353 return bytes.toByteArray(); 363 bytes.write(buffer, 0, len);
|
/opengrok/test/org/opensolaris/opengrok/analysis/c/ |
H A D | CAnalyzerFactoryTest.java | 121 Scopes scopes = Scopes.deserialize(scopesField.binaryValue().bytes);
|
H A D | CxxAnalyzerFactoryTest.java | 121 Scopes scopes = Scopes.deserialize(scopesField.binaryValue().bytes);
|
/opengrok/test/org/opensolaris/opengrok/analysis/clojure/ |
H A D | ClojureAnalyzerFactoryTest.java | 116 Definitions definitions = Definitions.deserialize(doc.getField(QueryBuilder.TAGS).binaryValue().bytes);
|
/opengrok/test/org/opensolaris/opengrok/analysis/csharp/ |
H A D | CSharpAnalyzerFactoryTest.java | 114 Scopes scopes = Scopes.deserialize(scopesField.binaryValue().bytes);
|
/opengrok/test/org/opensolaris/opengrok/analysis/java/ |
H A D | JavaAnalyzerFactoryTest.java | 121 Scopes scopes = Scopes.deserialize(scopesField.binaryValue().bytes);
|
/opengrok/test/org/opensolaris/opengrok/analysis/pascal/ |
H A D | PascalAnalyzerFactoryTest.java | 116 Definitions definitions = Definitions.deserialize(doc.getField(QueryBuilder.TAGS).binaryValue().bytes);
|
/opengrok/src/org/opensolaris/opengrok/search/ |
H A D | Results.java | 214 tags = Definitions.deserialize(tagsField.binaryValue().bytes); 219 scopes = Scopes.deserialize(scopesField.binaryValue().bytes);
|
H A D | SearchEngine.java | 411 tags = Definitions.deserialize(tagsField.binaryValue().bytes); 416 scopes = Scopes.deserialize(scopesField.binaryValue().bytes);
|
/opengrok/lib/ |
H A D | bcel-6.0.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ... |
/opengrok/src/org/opensolaris/opengrok/web/ |
H A D | SearchHelper.java | 336 byte[] rawTags = doc.getField(QueryBuilder.TAGS).binaryValue().bytes;
|
/opengrok/.mvn/wrapper/ |
H A D | maven-wrapper.jar | org/apache/maven/wrapper/BootstrapMainStarter.class BootstrapMainStarter.java package org.apache.maven.wrapper public ... |
/opengrok/src/org/opensolaris/opengrok/index/ |
H A D | IndexDatabase.java | 1148 return Definitions.deserialize(tags.binaryValue().bytes);
|