Lines Matching refs:write
60 "<!--" { yybegin(COMMENT); out.write("<span class=\"c\"><!--"); }
63 out.write("<<span class=\"n\">![CDATA[</span><span class=\"c\">");
65 "<" { yybegin(TAG); out.write("<");}
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("<span class=\"s\">\""); }
72 \' { yybegin(SSTRING); out.write("<span class=\"s\">'"); }
73 ">" { yybegin(YYINITIAL); out.write(">"); }
74 "<" { yybegin(YYINITIAL); out.write("<"); }
78 \" {WhiteSpace}* \" { out.write(yytext());}
79 \" { yybegin(TAG); out.write("\"</span>"); }
83 "<" {out.write( "<");}
84 ">" {out.write( ">");}
88 \' {WhiteSpace}* \' { out.write(yytext());}
89 \' { yybegin(TAG); out.write("'</span>"); }
93 "-->" { yybegin(YYINITIAL); out.write("--></span>"); }
98 yybegin(YYINITIAL); out.write("<span class=\"n\">]]</span></span>>");
115 out.write("<a href=\"");
116 out.write(s);out.write("\">");
117 out.write(s);out.write("</a>");}
124 "&" {out.write( "&");}
126 [ !-~\t\f] {out.write(yycharat(0));}