Lines Matching refs:out

64       out.write("</span>"); spans.pop();
67 out.write("<span>"); spans.push("");
69 out.write("<span class=\"" + style + "\">"); spans.push(style);
77 out.write("</span>"); spans.pop();
83 out.write("<span>"); spans.push("");
85 out.write("<span class=\"" + style + "\">"); spans.push(style);
140 out.write("<a href=\"");
141 out.write(urlPrefix);
142 out.write("refs=");
143 out.write(id);
145 out.write("\">");
146 out.write(id);
147 out.write("</a>");
155 out.write(yytext()); pushstate(STRING, "s");
165 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
167 \$ ? \" { pushstate(STRING, "s"); out.write(yytext()); }
168 \$ ? \' { pushstate(QSTRING, "s"); out.write(yytext()); }
169 "#" { pushstate(SCOMMENT, "c"); out.write(yytext()); }
174 out.write(Util.htmlize(text));
184 out.write(Util.htmlize(yytext()));
190 \" {WhiteSpace}* \" { out.write(yytext()); }
191 \" { out.write(yytext()); popstate(); }
192 \\\\ | \\\" | \\\$ | \\` { out.write(yytext()); }
193 \$\( { pushstate(SUBSHELL, null); out.write(yytext()); }
194 ` { pushstate(BACKQUOTE, null); out.write(yytext()); }
201 pushstate(BRACEGROUP, null); out.write(yytext());
206 \' {WhiteSpace}* \' { out.write(yytext()); }
207 \\' { out.write("\\'"); }
208 \' { out.write(yytext()); popstate(); }
217 \) { out.write(yytext()); popstate(); }
221 ` { out.write(yytext()); popstate(); }
230 ^ {WhiteSpace}* \} { out.write(yytext()); popstate(); }
231 ; {WhiteSpace}* \} { out.write(yytext()); popstate(); }
240 out.write(Util.htmlize(line));
248 \\` | \\\( | \\\) | \\\\ | \\\{ { out.write(yytext()); }
249 \\\" | \\' | \\\$ | \\\# { out.write(yytext()); }
252 "$#" { out.write(yytext()); }
254 \$ ? \( { pushstate(SUBSHELL, null); out.write(yytext()); }
255 ` { pushstate(BACKQUOTE, null); out.write(yytext()); }
264 pushstate(BRACEGROUP, null); out.write(yytext());
271 out.write("<a href=\""+urlPrefix+"path=");
272 out.write(path);
274 out.write("\">");
275 out.write(path);
276 out.write("</a>");
280 { out.write(Util.breadcrumbPath(urlPrefix+"path=",yytext(),'/'));}
281 "&" {out.write( "&amp;");}
282 "<" {out.write( "&lt;");}
283 ">" {out.write( "&gt;");}
285 {WhiteSpace}+ { out.write(yytext()); }
286 [!-~] { out.write(yycharat(0)); }
295 out.write("<a href=\"");
296 out.write(Util.uriEncodeURL(url));out.write("\">");
297 out.write(Util.htmlize(url));out.write("</a>");