Lines Matching refs:out

71         out.write("<");
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("</span>"); }
83 \" { yybegin(STRING); out.write("<span class=\"s\">\""); }
84 \' { yybegin(QSTRING); out.write("<span class=\"s\">\'"); }
85 "///" { yybegin(SCOMMENT); out.write("<span class=\"c\">///"); }
86 "//!" { yybegin(SCOMMENT); out.write("<span class=\"c\">//!"); }
87 "//" { yybegin(SCOMMENT); out.write("<span class=\"c\">//"); }
88 "/**" / [^/] { yybegin(COMMENT); out.write("<span class=\"c\">/**"); }
89 "/*" { yybegin(COMMENT); out.write("<span class=\"c\">/*"); }
93 "*/" { yybegin(YYINITIAL); out.write("*/</span>"); }
97 \" { yybegin(YYINITIAL); out.write("\"</span>"); }
98 \\\\ { out.write("\\\\"); }
99 \\\" { out.write("\\\""); }
100 {WhiteSpace}*{EOL} { yybegin(YYINITIAL); out.write("</span>"); startNewLine(); }
104 "\\\\" { out.write("\\\\"); }
105 "\\\'" { out.write("\\\'"); }
106 \' {WhiteSpace} \' { out.write(yytext()); }
107 \' { yybegin(YYINITIAL); out.write("'</span>"); }
108 {WhiteSpace}*{EOL} { yybegin(YYINITIAL); out.write("</span>"); startNewLine(); }
112 {WhiteSpace}*{EOL} { yybegin(YYINITIAL); out.write("</span>"); startNewLine(); }
116 "&" { out.write( "&amp;"); }
117 "<" { out.write( "&lt;"); }
118 ">" { out.write( "&gt;"); }
120 {WhiteSpace} { out.write(yytext()); }
121 [!-~] { out.write(yycharat(0)); }
126 {Path} { 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>");