Searched defs:input (Results 1 - 18 of 18) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
H A DHistoryReader.java38 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 DAccuRevHistoryParser.java109 public void processStream(InputStream input) throws IOException { argument
111 BufferedReader in = new BufferedReader(new InputStreamReader(input));
H A DBazaarHistoryParser.java88 * @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 DClearCaseHistoryParser.java70 * @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 DMonotoneHistoryParser.java94 * @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 DCVSHistoryParser.java59 * @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 DMercurialHistoryParser.java106 * @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 DSSCMHistoryParser.java72 * @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 DGitHistoryParser.java61 * @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 DSSCMRepository.java327 protected Annotation parseAnnotation(Reader input, String fileName) argument
329 BufferedReader in = new BufferedReader(input);
H A DBazaarRepository.java187 protected Annotation parseAnnotation(Reader input, String fileName) argument
189 BufferedReader in = new BufferedReader(input);
H A DCVSRepository.java91 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 DSubversionHistoryParser.java181 * @param input The output from the process
184 public void processStream(InputStream input) { argument
187 saxParser.parse(new BufferedInputStream(input), handler);
H A DGitRepository.java232 * @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 DFastCharStream.java24 * 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 DArchiveParser.java29 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 DArchive.java223 * 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 Dbcel-6.0.jar ... IOException int name_index int length java.io.DataInput input org.apache.bcel.classfile.ConstantPool constant_pool ...

Completed in 120 milliseconds