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

/opengrok-sun/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
228 String contents = "echo \"hello\"";
229 xref.reInit(contents.toCharArray(), contents.length());
/opengrok-sun/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-sun/src/org/opensolaris/opengrok/analysis/
H A DJFlexTokenizer.java4 * The contents of this file are subject to the terms of the
64 * Reinitialize the tokenizer with new contents.
66 * @param contents a char buffer with text to tokenize
69 public final void reInit(char[] contents, int length) { argument
70 this.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
159 * Reinitialize the xref with new contents.
161 * @param contents a char buffer with text to analyze
164 public void reInit(char[] contents, int length) { argument
165 yyreset(new CharArrayReader(contents, 0, length));
/opengrok-sun/web/
H A Dutils.js4 * The contents of this file are subject to the terms of the
167 * Create the Navigation toggle link as well as its contents.
170 // var contents = "<input id=\"input_highlight\" name=\"input_highlight\"
172 // contents += "&nbsp;&nbsp;";
173 // contents += "<b><a href=\"#\" onclick=\"javascript:add_highlight();return
175 var contents =
178 return contents;
184 contents += "<br/>";
189 contents += "<b>" + symbol_class[0] + "</b><br/>";
194 contents
[all...]
H A Djquery-1.4.4.min.js108 2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,
113 wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},
/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DRazorHistoryParser.java4 * The contents of this file are subject to the terms of the
81 FileReader contents = new FileReader(mappedFile.getAbsoluteFile());
83 return parseContents(new BufferedReader(contents));
85 IOUtils.close(contents);
89 protected History parseContents(BufferedReader contents) throws IOException { argument
102 while ((line = contents.readLine()) != null) {
/opengrok-sun/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-sun/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java4 * The contents of this file are subject to the terms of the
562 * Get the contents of a file or empty string if the file cannot be read.
574 StringBuilder contents = new StringBuilder();
577 contents.append(line).append(EOL);
579 return contents.toString();
613 * Get the contents of the footer include file.
616 * contents of the file otherwise.
634 * Get the contents of the footer include file.
637 * contents of the file otherwise.

Completed in 23 milliseconds