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

/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DPathTokenizer.java38 public PathTokenizer(Reader input) { argument
39 super(input);
54 c = input.read();
65 c = input.read();
H A DJFlexTokenizer.java57 * Run the scanner to get the next token from the input.
62 * Closes the current input stream, and resets the scanner to read from the
63 * given input stream. All internal variables are reset, the old input
66 * @param reader the new input stream to operate on.*/
69 * Closes the input stream in use. All subsequent calls to the scanning
87 * @param input input to process. Might be {@code null}.
89 public JFlexTokenizer(java.io.Reader input) { argument
90 super(input);
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DAccuRevHistoryParser.java88 public void processStream(InputStream input) throws IOException { argument
89 BufferedReader in = new BufferedReader(new InputStreamReader(input));
H A DBazaarHistoryParser.java89 * @param input The output from the process
93 public void processStream(InputStream input) throws IOException { argument
97 BufferedReader in = new BufferedReader(new InputStreamReader(input));
H A DClearCaseHistoryParser.java67 * @param input The output from the process
71 public void processStream(InputStream input) throws IOException { argument
73 BufferedReader in = new BufferedReader(new InputStreamReader(input));
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 DMonotoneHistoryParser.java97 * @param input The output from the process
101 public void processStream(InputStream input) throws IOException { argument
104 BufferedReader in = new BufferedReader(new InputStreamReader(input));
H A DCVSHistoryParser.java56 * @param input The output from the process
60 public void processStream(InputStream input) throws IOException { argument
64 BufferedReader in = new BufferedReader(new InputStreamReader(input));
H A DMercurialHistoryParser.java103 * @param input The output from the process
108 public void processStream(InputStream input) throws IOException { argument
111 BufferedReader in = new BufferedReader(new InputStreamReader(input));
H A DGitHistoryParser.java63 * @param input The output from the process
67 public void processStream(InputStream input) throws IOException { argument
70 in = new BufferedReader(repository.newLogReader(input));
H A DBazaarRepository.java186 protected Annotation parseAnnotation(Reader input, String fileName) argument
189 BufferedReader in = new BufferedReader(input);
H A DCVSRepository.java291 * Read the given input and create an annotation from its content.
292 * @param input data to read
298 protected Annotation parseAnnotation(Reader input, String fileName) argument
301 BufferedReader in = new BufferedReader(input);
H A DGitRepository.java296 * @param input a stream with the output from a log or blame command
297 * @return a reader that reads the input
301 Reader newLogReader(InputStream input) throws IOException { argument
306 return new InputStreamReader(input, "UTF-8");
453 * Parse the given input for annotation infos.
454 * @param input data to parse
455 * @param fileName name of the file associated with the given input (used
460 private static Annotation parseAnnotation(Reader input, String fileName) argument
463 BufferedReader in = new BufferedReader(input);
H A DSubversionHistoryParser.java182 * @param input The output from the process
185 public void processStream(InputStream input) { argument
188 saxParser.parse(new BufferedInputStream(input), handler);
/opengrok-jel/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
40 input = in;
72 input.read(buffer, newPosition, buffer.length-newPosition);
114 input.close();
H A DArchiveParser.java28 System.out.println(ident + " Reading from standard input . . .");
55 public static void load(Archive arc, InputStream input) throws ParseException argument
57 ArchiveParser parser = new ArchiveParser(input);
H A DArchive.java236 * Load an archive from an input stream.
237 * Parses the archive given by the input stream, and gives it the provided name.
239 * @param input Where to read the archive from
242 public Archive(String fname, InputStream input) throws ParseException argument
245 ArchiveParser.load(this, input);
/opengrok-jel/lib/
H A Djrcs.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ...

Completed in 42 milliseconds