Searched refs:input (Results 1 - 25 of 32) sorted by relevance

12

/opengrok-jel/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.java88 public void processStream(InputStream input) throws IOException { argument
89 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 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 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 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 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 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 DSubversionHistoryParser.java182 * @param input The output from the process
185 public void processStream(InputStream input) { argument
188 saxParser.parse(new BufferedInputStream(input), handler);
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 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);
/opengrok-jel/test/org/opensolaris/opengrok/analysis/
H A DExpandTabsReaderTest.java46 StringBuilder input = new StringBuilder();
47 input.append(inputLine).append('\n');
48 input.append(inputLine).append('\r');
49 input.append('\t');
51 // Create Reader that reads the test input.
52 StringReader sr = new StringReader(input.toString());
54 // Wrap the input in an ExpandTabsReader with tab size 8.
/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...]
H A DAnalyzerGuru.java212 * data in the input stream.
228 * the given input stream
278 * @param in The input stream we want to get the content type for (if
283 * @throws java.io.IOException If an error occurs while accessing the input
299 * @param in The input stream containing the data
313 Reader input = in;
317 input = ExpandTabsReader.wrap(in, project);
319 factory.writeXref(input, out, defs, annotation, project);
409 * @param in The input stream containing the data
455 * the current position in the given input strea
[all...]
/opengrok-jel/test/org/opensolaris/opengrok/analysis/plain/
H A DXMLAnalyzerTest.java61 StringReader input =
64 XMLAnalyzer.writeXref(input, new XrefWriter(output), null, null, null);
67 input = new StringReader("<foo xyz=\"<betweendoublequotes>\"> </foo>");
69 XMLAnalyzer.writeXref(input, new XrefWriter(output), null, null, null);
/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.jj110 System.out.println(ident + " Reading from standard input . . .");
137 public static void load(Archive arc, InputStream input) throws ParseException
139 ArchiveParser parser = new ArchiveParser(input);
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DBazaarRepositoryTest.java79 Reader input = new StringReader(output);
81 Annotation result = instance.parseAnnotation(input, fileName);
H A DCVSRepositoryTest.java96 Reader input = new StringReader(output);
98 Annotation result = instance.parseAnnotation(input, fileName);
H A DGitRepositoryTest.java72 Reader input = new StringReader(output);
77 Annotation result = (Annotation) method.invoke(instance, input, fileName);
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java1057 BufferedReader input = null;
1060 input = new BufferedReader(fin);
1064 while (( line = input.readLine()) != null) {
1076 if (input != null) {
1077 IOUtils.close(input);
/opengrok-jel/web/static/default/
H A Dprint.css38 input, button {
43 input { /* text input fields */
100 #qtbl input {
/opengrok-jel/web/static/offwhite/
H A Dprint.css38 input, button {
43 input { /* text input fields */
103 #qtbl input {

Completed in 33 milliseconds

12