Lines Matching refs:out

79         out.write("&");
81 out.write(c);
87 out.write("<");
90 out.write("<a href=\""+urlPrefix+"path=");
91 out.write(path);
93 out.write("\">");
94 out.write(path);
95 out.write("</a>");
96 out.write("&gt;");
99 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
101 \" { yybegin(STRING);out.write("<span class=\"s\">\""); spans.push("s"); }
102 \' { yybegin(QSTRING);out.write("<span class=\"s\">\'"); spans.push("s"); }
103 "#" { yybegin(SCOMMENT);out.write("<span class=\"c\">#"); spans.push("c"); }
104 ^ {Pods} { yybegin(POD);out.write("<span class=\"c\">"+yytext()); spans.push("c"); }
109 yybegin(YYINITIAL); out.write(yytext()+"</span>"); spans.pop();
116 \" { yybegin(YYINITIAL); out.write("\"</span>"); spans.pop(); }
117 \\\\ { out.write("\\\\"); }
118 \\\" { out.write("\\\""); }
120 yybegin(YYINITIAL); out.write("</span>"); spans.pop();
126 "\\\\" { out.write("\\\\"); }
127 "\\\'" { out.write("\\\'"); }
128 \' {WhiteSpace} \' { out.write(yytext()); }
129 \' { yybegin(YYINITIAL); out.write("'</span>"); spans.pop(); }
131 yybegin(YYINITIAL); out.write("</span>"); spans.pop();
138 yybegin(YYINITIAL); out.write("</span>"); spans.pop();
145 "&" {out.write( "&amp;");}
146 "<" {out.write( "&lt;");}
147 ">" {out.write( "&gt;");}
149 {WhiteSpace} { out.write(yytext()); }
150 [!-~] { out.write(yycharat(0)); }
156 { out.write(Util.breadcrumbPath(urlPrefix+"path=",yytext(),'/'));}
161 out.write("<a href=\""+urlPrefix+"path=");
162 out.write(path);
164 out.write("\">");
165 out.write(path);
166 out.write("</a>");}
171 out.write("<a href=\"");
172 out.write(Util.uriEncodeURL(url));out.write("\">");
173 out.write(Util.htmlize(url));out.write("</a>");}