Searched refs:write (Results 1 - 25 of 63) sorted by relevance

123

/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.write("<
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DDirectoryListing.java64 * @param out write destination
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
123 out.write("<table id=\"dirlist\" class=\"tablesorter tablesorter-default\">\n");
124 out.write("<thea
[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.write(pat
[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.write("</spa
[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.write("</spa
[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.write("\\\""); }
[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.write(yytex
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/document/
H A DTroffXref.lex45 public void write(Writer out) throws IOException {
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.write("\">");
92 out.write("<div class=\"");
93 out.write(cssClas
[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.write(yytex
[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.write("<spa
[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.write("<spa
[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.write(Uti
[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.write( "
[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.write("<spa
[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.write(i
[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>");
117 | "property-write"
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("</spa
[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.write("</spa
[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.write("
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/executables/
H A DJavaClassAnalyzer.java117 cout.write(fl);
118 cout.write('\n');
189 out.write(linkPath(t = c.getSourceFileName()));
192 fout.write(t);
193 out.write(EOL);
194 fout.write(EOL);
196 out.write(PACKAGE);
197 fout.write(PACKAGE);
198 out.write(linkDef(t = c.getPackageName()));
201 fout.write(
[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.write("<
[all...]
/opengrok/src/org/opensolaris/opengrok/search/context/
H A DPlainLineTokenizer.lex77 * @param out The new writer to write to
155 out.write("<b>");
167 out.write("</b>");
170 out.write("</a>");
172 out.write(" <i> ");
174 out.write(desc[2]);
175 out.write(" </i>");
177 out.write("<br/>");
181 if (hi) out.write("<span class=\"h\">"); //TODO: closing tag - where?
182 out.write("<
[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\">");
78 out.write("&lt;");
81 out.write("<a href=\""+urlPrefix+"path=");
82 out.write(file);out.write("\">");
83 out.write(file);out.write("</
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/javascript/
H A DJavaScriptXref.lex76 out.write("&lt;");
79 out.write("<a href=\""+urlPrefix+"path=");
80 out.write(path);
82 out.write("\">");
83 out.write(path);
84 out.write("</a>");
85 out.write("&gt;");
89 { out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));}
91 {Number} { out.write("<span class=\"n\">"); out.write(yytex
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/scala/
H A DScalaXref.lex82 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;");
95 { out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));}
97 {Number} { out.write("<span class=\"n\">"); out.write(yytex
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/csharp/
H A DCSharpXref.lex83 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.write("&gt;");
96 { out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));}
98 {Number} { out.write("<span class=\"n\">"); out.write(yytex
[all...]

Completed in 32 milliseconds

123