Searched refs:out (Results 1 - 25 of 140) sorted by relevance

123456

/opengrok/src/org/opensolaris/opengrok/web/
H A DDirectoryListing.java64 * @param out write destination
72 private void printDateSize(Writer out, File child, Date modTime, argument
77 out.write("<td>");
79 out.write("Today");
81 out.write(dateFormatter.format(lastm));
83 out.write("</td><td>");
85 out.write(Util.readableSize(child.length()));
87 out.write("</td>");
95 * @param out write destination
109 public List<String> listTo(String contextPath, File dir, Writer out, argument
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/lua/
H A DLuaXref.lex68 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
69 \" { yybegin(STRING); out.write("<span class=\"s\">\""); }
70 "[[" { yybegin(LSTRING); out.write("<span class=\"s\">[["); }
71 \' { yybegin(QSTRING); out.write("<span class=\"s\">\'"); }
72 "--[[" { yybegin(COMMENT); out.write("<span class=\"c\">--[["); }
73 "--" { yybegin(SCOMMENT); out.write("<span class=\"c\">--"); }
77 out.write("&lt;");
80 out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/golang/
H A DGolangXref.lex68 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
69 \" { yybegin(STRING); out.write("<span class=\"s\">\""); }
70 \' { yybegin(QSTRING); out.write("<span class=\"s\">\'"); }
71 "/*" { yybegin(COMMENT); out.write("<span class=\"c\">/*"); }
72 "//" { yybegin(SCOMMENT); out.write("<span class=\"c\">//"); }
76 out.write("&lt;");
79 out.write("<a href=\""+urlPrefix+"path=");
80 out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/python/
H A DPythonXref.lex72 out.write("&lt;");
75 out.write("<a href=\""+urlPrefix+"path=");
76 out.write(path);
78 out.write("\">");
79 out.write(path);
80 out.write("</a>");
81 out.write("&gt;");
84 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/rust/
H A DRustXref.lex71 out.write("&lt;");
74 out.write("<a href=\""+urlPrefix+"path=");
75 out.write(path);
77 out.write("\">");
78 out.write(path);
79 out.write("</a>");
80 out.write("&gt;");
82 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/document/
H A DTroffXref.lex45 public void write(Writer out) throws IOException {
50 this.out = out;
64 out.write("</p>");
70 out.write("</span>");
76 out.write("</div>");
81 out.write("<p>");
85 out.write("<span class=\"");
86 out.write(cssClass);
87 out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/haskell/
H A DHaskellXref.lex67 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
68 \" { yybegin(STRING); out.write("<span class=\"s\">\""); }
69 \' { yybegin(CHAR); out.write("<span class=\"s\">\'"); }
70 "--" { yybegin(COMMENT); out.write("<span class=\"c\">--"); }
71 "{-" { yybegin(BCOMMENT); out.write("<span class=\"c\">{-"); }
75 \" { yybegin(YYINITIAL); out.write("\"</span>"); }
76 \\\\ { out.write("\\\\"); }
77 \\\" { out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DJFlexXref.java53 public Writer out; field in class:JFlexXref
220 out.write("&amp;project=");
221 out.write(project.getDescription());
226 out.write("<a href=\"");
227 out.write(Util.formQuoteEscape(url));
228 out.write("\">");
229 Util.htmlize(url, out);
230 out.write("</a>");
327 * @param out xref destination
330 public void write(Writer out) throw argument
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/vb/
H A DVBXref.lex77 out.write("&lt;");
80 out.write("<a href=\""+urlPrefix+"path=");
81 out.write(path);
83 out.write("\">");
84 out.write(path);
85 out.write("</a>");
86 out.write("&gt;");
90 { out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));}
92 {Number} { out.write("<span class=\"n\">"); out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/perl/
H A DPerlXref.lex77 out.write(yytext().substring(0,1));
82 out.write("&lt;");
85 out.write("<a href=\""+urlPrefix+"path=");
86 out.write(path);
88 out.write("\">");
89 out.write(path);
90 out.write("</a>");
91 out.write("&gt;");
94 {Number} { out.write("<span class=\"n\">"); out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/clojure/
H A DClojureXref.lex78 {Number} { out.write("<span class=\"n\">");
79 out.write(yytext());
80 out.write("</span>"); }
82 \" { yybegin(STRING);out.write("<span class=\"s\">\"");}
83 ";" { yybegin(SCOMMENT);out.write("<span class=\"c\">;");}
87 \" {WhiteSpace} \" { out.write(yytext()); }
88 \" { yybegin(YYINITIAL); out.write("\"</span>"); }
89 \\\\ { out.write("\\\\"); }
90 \\\" { out.write("\\\""); }
95 if (nestedComment++ == 0) { out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/lisp/
H A DLispXref.lex78 {Number} { out.write("<span class=\"n\">");
79 out.write(yytext());
80 out.write("</span>"); }
82 \" { yybegin(STRING);out.write("<span class=\"s\">\"");}
83 ";" { yybegin(SCOMMENT);out.write("<span class=\"c\">;");}
87 \" {WhiteSpace} \" { out.write(yytext()); }
88 \" { yybegin(YYINITIAL); out.write("\"</span>"); }
89 \\\\ { out.write("\\\\"); }
90 \\\" { out.write("\\\""); }
95 if (nestedComment++ == 0) { out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/pascal/
H A DPascalXref.lex69 "begin" { incScope(); out.write(yytext()); }
70 "end" { decScope(); out.write(yytext());}
79 out.write("&lt;");
82 out.write("<a href=\""+urlPrefix+"path=");
83 out.write(path);
85 out.write("\">");
86 out.write(path);
87 out.write("</a>");
88 out.write("&gt;");
92 { out
[all...]
/opengrok/src/org/opensolaris/opengrok/search/context/
H A DPlainLineTokenizer.lex64 Writer out;
77 * @param out The new writer to write to
79 public void setWriter(Writer out) {
81 this.out = out;
107 public void reInit(char[] buf, int len, Writer out, String url, TreeMap<Integer, String[]> tags, Scopes scopes) {
108 reInit(new CharArrayReader(buf, 0, len), out, url, tags, scopes);
111 public void reInit(Reader in, Writer out, String url, TreeMap<Integer, String[]> tags, Scopes scopes) {
123 this.out = out;
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/plain/
H A DPlainXref.lex52 out.write("<a href=\"");out.write(urlPrefix);out.write("path=");
53 out.write(s);appendProject();out.write("\">");
54 out.write(s);out.write("</a>");}
71 {FNameChar}+ { out.write(yytext()); }
73 "&" {out.write( "&amp;");}
74 "<" {out
[all...]
H A DXMLXref.lex60 "<!--" { yybegin(COMMENT); out.write("<span class=\"c\">&lt;!--"); }
63 out.write("&lt;<span class=\"n\">![CDATA[</span><span class=\"c\">");
65 "<" { yybegin(TAG); out.write("&lt;");}
69 [a-zA-Z_0-9]+{WhiteSpace}*\= { out.write("<b>"); out.write(yytext()); out.write("</b>"); }
70 [a-zA-Z_0-9]+ { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
71 \" { yybegin(STRING); out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/sh/
H A DShXref.lex62 out.write("</span>");
65 out.write("<span>");
67 out.write("<span class=\"" + style + "\">");
75 out.write("</span>");
81 out.write("<span>");
83 out.write("<span class=\"" + style + "\">");
138 out.write("<a href=\"");
139 out.write(urlPrefix);
140 out.write("refs=");
141 out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/php/
H A DPhpXref.lex63 out.write(yycharat(0));
64 out.write("<strong>");
65 out.write(Util.htmlize(yytext().substring(1)));
66 out.write("</strong>");
131 "<" | "</" { out.write(Util.htmlize(yytext())); yypush(TAG_NAME, null); }
134 out.write("<span class=\"c\">&lt;!--");
141 out.write("<span class=\"n\">");
142 out.write(yytext());
143 out.write("</span>");
148 out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/tcl/
H A DTclXref.lex71 {Number} { out.write("<span class=\"n\">");
72 out.write(yytext());
73 out.write("</span>"); }
75 \" { yybegin(STRING);out.write("<span class=\"s\">\"");}
76 "#" { yybegin(SCOMMENT);out.write("<span class=\"c\">#");}
80 \" {WhiteSpace} \" { out.write(yytext()); }
81 \" { yybegin(YYINITIAL); out.write("\"</span>"); }
82 \\\\ { out.write("\\\\"); }
83 \\\" { out.write("\\\""); }
88 yybegin(YYINITIAL); out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/erlang/
H A DErlangXref.lex74 out.write("<span class=\"xm\">"); out.write(yytext()); out.write("</span>");
83 out.write("&lt;");
86 out.write("<a href=\""+urlPrefix+"path=");
87 out.write(path);
89 out.write("\">");
90 out.write(path);
91 out.write("</a>");
92 out
[all...]
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/tools/
H A DJRCS.java93 //System.out.println(archive.toString());
94 //System.out.println(archive.getRevision("5.2.7.1"));
95 //System.out.println(archive.getRevision(args[1], true));
98 System.out.println("*-orig-*********");
99 System.out.print(Diff.arrayToString(orig));
100 System.out.println("**********");
101 //!! commented out because of package access error (jvz).
103 //System.out.println(Diff.diff(archive.removeKeywords(orig),
120 System.out.println(e.getClass().toString());
121 System.out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/fortran/
H A DFortranXref.lex65 ^{Label} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
68 out.write("<span class=\"c\">");
69 Util.htmlize(yytext(), out);
78 out.write("&lt;");
81 out.write("<a href=\""+urlPrefix+"path=");
82 out.write(file);out.write("\">");
83 out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/uue/
H A DUuencodeXref.lex63 out.write("<strong>" + yytext() + "</strong>");
72 {FNameChar}+ { out.write(yytext()); }
74 "<" {out.write( "&lt;");}
75 "&" {out.write( "&amp;");}
77 {WhiteSpace}+ { out.write(yytext()); }
78 [!-~] { out.write(yycharat(0)); }
83 [ ] { out.write(yycharat(0)); }
87 out.write("<i>" + yytext() + "</i>");
93 [ ] { out.write(yycharat(0)); }
98 out
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/sql/
H A DPLSQLXref.lex70 out.append("<span class=\"n\">").append(yytext()).append("</span>");
73 "'" { yybegin(STRING); out.append("<span class=\"s\">'"); }
75 \" { yybegin(QUOTED_IDENTIFIER); out.append("<span class=\"s\">\""); }
77 "--" { yybegin(SINGLE_LINE_COMMENT); out.append("<span class=\"c\">--"); }
82 out.append("<span class=\"c\">/*");
87 "''" { out.append("''"); }
88 "'" { yybegin(YYINITIAL); out.append("'</span>"); }
92 \"\" { out.append("\"\""); }
93 \" { yybegin(YYINITIAL); out.append("\"</span>"); }
99 out
[all...]
H A DSQLXref.lex70 out.append("<span class=\"n\">").append(yytext()).append("</span>");
73 "'" { yybegin(STRING); out.append("<span class=\"s\">'"); }
75 \" { yybegin(QUOTED_IDENTIFIER); out.append("<span class=\"s\">\""); }
77 "--" { yybegin(SINGLE_LINE_COMMENT); out.append("<span class=\"c\">--"); }
82 out.append("<span class=\"c\">/*");
87 "''" { out.append("''"); }
88 "'" { yybegin(YYINITIAL); out.append("'</span>"); }
92 \"\" { out.append("\"\""); }
93 \" { yybegin(YYINITIAL); out.append("\"</span>"); }
99 out
[all...]

Completed in 825 milliseconds

123456