/opengrok/src/org/opensolaris/opengrok/history/ |
H A D | HistoryReader.java | 38 private Reader input; field in class:HistoryReader 46 if (input == null) { 47 input = createInternalReader(); 49 return input.read(cbuf, off, len); 54 IOUtils.close(input);
|
H A D | AccuRevHistoryParser.java | 109 public void processStream(InputStream input) throws IOException { argument 111 BufferedReader in = new BufferedReader(new InputStreamReader(input));
|
H A D | BazaarHistoryParser.java | 88 * @param input The output from the process 92 public void processStream(InputStream input) throws IOException { argument 96 BufferedReader in = new BufferedReader(new InputStreamReader(input));
|
H A D | ClearCaseHistoryParser.java | 70 * @param input The output from the process 74 public void processStream(InputStream input) throws IOException { argument 76 BufferedReader in = new BufferedReader(new InputStreamReader(input));
|
H A D | MonotoneHistoryParser.java | 94 * @param input The output from the process 98 public void processStream(InputStream input) throws IOException { argument 101 BufferedReader in = new BufferedReader(new InputStreamReader(input));
|
H A D | CVSHistoryParser.java | 59 * @param input The output from the process 63 public void processStream(InputStream input) throws IOException { argument 67 BufferedReader in = new BufferedReader(new InputStreamReader(input));
|
H A D | MercurialHistoryParser.java | 106 * @param input The output from the process 110 public void processStream(InputStream input) throws IOException { argument 113 BufferedReader in = new BufferedReader(new InputStreamReader(input));
|
H A D | SSCMHistoryParser.java | 72 * @param input The output from the process 76 public void processStream(InputStream input) throws IOException { argument 80 BufferedReader in = new BufferedReader(new InputStreamReader(input)); 81 StringBuilder total = new StringBuilder(input.available());
|
H A D | GitHistoryParser.java | 61 * @param input The output from the process 65 public void processStream(InputStream input) throws IOException { argument 66 try (BufferedReader in = new BufferedReader(repository.newLogReader(input))) {
|
H A D | SSCMRepository.java | 327 protected Annotation parseAnnotation(Reader input, String fileName) argument 329 BufferedReader in = new BufferedReader(input);
|
H A D | BazaarRepository.java | 187 protected Annotation parseAnnotation(Reader input, String fileName) argument 189 BufferedReader in = new BufferedReader(input);
|
H A D | CVSRepository.java | 91 BufferedReader input; 94 input = new BufferedReader(new FileReader(rootFile)); 96 root = input.readLine(); 102 input.close(); 297 protected Annotation parseAnnotation(Reader input, String fileName) argument 299 BufferedReader in = new BufferedReader(input);
|
H A D | SubversionHistoryParser.java | 181 * @param input The output from the process 184 public void processStream(InputStream input) { argument 187 saxParser.parse(new BufferedInputStream(input), handler);
|
H A D | GitRepository.java | 232 * @param input a stream with the output from a log or blame command 233 * @return a reader that reads the input 236 Reader newLogReader(InputStream input) throws IOException { argument 241 return new InputStreamReader(input, "UTF-8"); 386 protected Annotation parseAnnotation(Reader input, String fileName) argument 389 BufferedReader in = new BufferedReader(input);
|
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | FastCharStream.java | 24 * character position of the token in the input, as required by Lucene's {@link 35 InputStream input; // source of chars field in class:FastCharStream 39 input = in; 69 input.read(buffer, newPosition, buffer.length-newPosition); 102 input.close();
|
H A D | ArchiveParser.java | 29 System.out.println(ident + " Reading from standard input . . ."); 56 public static void load(Archive arc, InputStream input) throws ParseException argument 58 ArchiveParser parser = new ArchiveParser(input);
|
H A D | Archive.java | 223 * Load an archive from an input stream. 224 * Parses the archive given by the input stream, and gives it the provided name. 226 * @param input Where to read the archive from 228 public Archive(String fname, InputStream input) throws ParseException argument 231 ArchiveParser.load(this, input);
|
/opengrok/lib/ |
H A D | bcel-6.0.jar | ... IOException int name_index
int length
java.io.DataInput input
org.apache.bcel.classfile.ConstantPool constant_pool ... |