Lines Matching refs:out

72         out.write("<");
74 out.write(Util.breadcrumbPath(urlPrefix + "path=", path));
75 out.write(">");
79 { out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));}
81 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
83 \" { yybegin(STRING);out.write("<span class=\"s\">\""); spans.push("s"); }
84 \' { yybegin(QSTRING);out.write("<span class=\"s\">\'"); spans.push("s"); }
85 "/*" { yybegin(COMMENT);out.write("<span class=\"c\">/*"); spans.push("c"); }
86 "//" { yybegin(SCOMMENT);out.write("<span class=\"c\">//"); spans.push("c"); }
90 \" {WhiteSpace} \" { out.write(yytext()); }
91 \" { yybegin(YYINITIAL); out.write("\"</span>"); spans.pop(); }
92 \\\\ { out.write("\\\\"); }
93 \\\" { out.write("\\\""); }
97 "\\\\" { out.write("\\\\"); }
98 "\\'" { out.write("\\\'"); }
99 \' {WhiteSpace} \' { out.write(yytext()); }
100 \' { yybegin(YYINITIAL); out.write("'</span>"); spans.pop(); }
104 "*/" { yybegin(YYINITIAL); out.write("*/</span>"); spans.pop(); }
108 {WhiteSpace}*{EOL} { yybegin(YYINITIAL); out.write("</span>"); spans.pop();
114 "&" {out.write( "&amp;");}
115 "<" {out.write( "&lt;");}
116 ">" {out.write( "&gt;");}
118 {WhiteSpace} { out.write(yytext()); }
119 [!-~] { out.write(yycharat(0)); }
125 { out.write(Util.breadcrumbPath(urlPrefix+"path=",yytext(),'/')); }
130 out.write("<a href=\""+urlPrefix+"path=");
131 out.write(path);
133 out.write("\">");
134 out.write(path);
135 out.write("</a>");}
140 out.write("<a href=\"");
141 out.write(Util.uriEncodeURL(url));out.write("\">");
142 out.write(Util.htmlize(url));out.write("</a>");}