Searched refs:contents (Results 1 - 10 of 10) sorted by relevance

/opengrok-jel/test/org/opensolaris/opengrok/analysis/
H A DTextAnalyzerTest.java4 * The contents of this file are subject to the terms of the
43 private String contents; field in class:TextAnalyzerTest
52 Assert.assertEquals("hello", contents);
62 Assert.assertEquals("hi", contents);
71 Assert.assertEquals("hello", contents);
86 Assert.assertEquals("hello", contents);
106 Assert.assertEquals("hello", contents);
122 contents = new String(buf, 0, br);
H A DJFlexXrefTest.java4 * The contents of this file are subject to the terms of the
251 String contents = "echo \"hello\"";
252 xref.reInit(contents.toCharArray(), contents.length());
/opengrok-jel/src/org/opensolaris/opengrok/analysis/archive/
H A DZipAnalyzerFactory.java4 * The contents of this file are subject to the terms of the
64 public FileAnalyzerFactory isMagic(byte[] contents, InputStream in)
67 if (contents.length < MAGIC.length) {
71 if (contents[i] != MAGIC[i]) {
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DJFlexTokenizer.java4 * The contents of this file are subject to the terms of the
94 * Reinitialize the tokenizer with new contents.
96 * @param contents a char buffer with text to tokenize
99 public final void reInit(char[] contents, int length) { argument
100 yyreset(new CharArrayReader(contents, 0, length));
H A DFileAnalyzerFactory.java4 * The contents of this file are subject to the terms of the
143 * Get matchers that map file contents to analyzer factories
195 * Interface for matchers which map file contents to analyzer factories.
200 * Try to match the file contents with an analyzer factory.
204 * @param contents the first few bytes of a file
206 * @return an analyzer factory if the contents match, or {@code null}
209 FileAnalyzerFactory isMagic(byte[] contents, InputStream in) argument
H A DJFlexXref.java4 * The contents of this file are subject to the terms of the
217 * Reinitialize the xref with new contents.
219 * @param contents a char buffer with text to analyze
222 public void reInit(char[] contents, int length) { argument
223 yyreset(new CharArrayReader(contents, 0, length));
/opengrok-jel/web/static/
H A Dopengrok-symbols-panel.js4 * The contents of this file are subject to the terms of the
239 var contents = "<div id='symbolsCB'>"
247 contents += "<h4>" + symbol_class[0] + "</h4><ul>";
249 contents += "<li><a href='#" + symbols[j][1]
253 contents += "</ul>"
255 contents += "</div>"
257 return Y.Node.create(contents);
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRazorHistoryParser.java4 * The contents of this file are subject to the terms of the
89 FileReader contents = new FileReader(mappedFile.getAbsoluteFile());
91 return parseContents(new BufferedReader(contents));
93 IOUtils.close(contents);
97 protected History parseContents(BufferedReader contents) throws IOException { argument
107 while ((line = contents.readLine()) != null) {
/opengrok-jel/src/org/opensolaris/opengrok/analysis/sh/
H A DShXref.lex4 * The contents of this file are subject to the terms of the
50 public void reInit(char[] contents, int length) {
51 super.reInit(contents, length);
91 * Check the contents of a line to see if it matches the stop word for a
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java4 * The contents of this file are subject to the terms of the
659 * search spiders do not want to chew. So they ignore the contents of
1049 * Get the contents of a file or empty string if the file cannot be read.
1062 StringBuilder contents = new StringBuilder();
1065 contents.append(line).append(EOL);
1067 return contents.toString();
1092 * Get the contents of the footer include file.
1095 * contents of the file otherwise.
1112 * Get the contents of the footer include file.
1115 * contents o
[all...]

Completed in 19 milliseconds