Lines Matching refs:yybegin
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>"); }
100 {WhiteSpace}*{EOL} { yybegin(YYINITIAL); out.write("</span>"); startNewLine(); }
107 \' { yybegin(YYINITIAL); out.write("'</span>"); }
108 {WhiteSpace}*{EOL} { yybegin(YYINITIAL); out.write("</span>"); startNewLine(); }
112 {WhiteSpace}*{EOL} { yybegin(YYINITIAL); out.write("</span>"); startNewLine(); }