/opengrok/src/org/opensolaris/opengrok/web/ |
H A D | DirectoryListing.java | 64 * @param out write destination 72 private void printDateSize(Writer out, File child, Date modTime, argument 77 out.write("<td>"); 79 out.write("Today"); 81 out.write(dateFormatter.format(lastm)); 83 out.write("</td><td>"); 85 out.write(Util.readableSize(child.length())); 87 out.write("</td>"); 95 * @param out write destination 109 public List<String> listTo(String contextPath, File dir, Writer out, argument [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/lua/ |
H A D | LuaXref.lex | 68 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); } 69 \" { yybegin(STRING); out.write("<span class=\"s\">\""); } 70 "[[" { yybegin(LSTRING); out.write("<span class=\"s\">[["); } 71 \' { yybegin(QSTRING); out.write("<span class=\"s\">\'"); } 72 "--[[" { yybegin(COMMENT); out.write("<span class=\"c\">--[["); } 73 "--" { yybegin(SCOMMENT); out.write("<span class=\"c\">--"); } 77 out.write("<"); 80 out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/golang/ |
H A D | GolangXref.lex | 68 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); } 69 \" { yybegin(STRING); out.write("<span class=\"s\">\""); } 70 \' { yybegin(QSTRING); out.write("<span class=\"s\">\'"); } 71 "/*" { yybegin(COMMENT); out.write("<span class=\"c\">/*"); } 72 "//" { yybegin(SCOMMENT); out.write("<span class=\"c\">//"); } 76 out.write("<"); 79 out.write("<a href=\""+urlPrefix+"path="); 80 out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/python/ |
H A D | PythonXref.lex | 72 out.write("<"); 75 out.write("<a href=\""+urlPrefix+"path="); 76 out.write(path); 78 out.write("\">"); 79 out.write(path); 80 out.write("</a>"); 81 out.write(">"); 84 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/rust/ |
H A D | RustXref.lex | 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(">"); 82 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/document/ |
H A D | TroffXref.lex | 45 public void write(Writer out) throws IOException { 50 this.out = out; 64 out.write("</p>"); 70 out.write("</span>"); 76 out.write("</div>"); 81 out.write("<p>"); 85 out.write("<span class=\""); 86 out.write(cssClass); 87 out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/haskell/ |
H A D | HaskellXref.lex | 67 {Number} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); } 68 \" { yybegin(STRING); out.write("<span class=\"s\">\""); } 69 \' { yybegin(CHAR); out.write("<span class=\"s\">\'"); } 70 "--" { yybegin(COMMENT); out.write("<span class=\"c\">--"); } 71 "{-" { yybegin(BCOMMENT); out.write("<span class=\"c\">{-"); } 75 \" { yybegin(YYINITIAL); out.write("\"</span>"); } 76 \\\\ { out.write("\\\\"); } 77 \\\" { out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/ |
H A D | JFlexXref.java | 53 public Writer out; field in class:JFlexXref 220 out.write("&project="); 221 out.write(project.getDescription()); 226 out.write("<a href=\""); 227 out.write(Util.formQuoteEscape(url)); 228 out.write("\">"); 229 Util.htmlize(url, out); 230 out.write("</a>"); 327 * @param out xref destination 330 public void write(Writer out) throw argument [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/vb/ |
H A D | VBXref.lex | 77 out.write("<"); 80 out.write("<a href=\""+urlPrefix+"path="); 81 out.write(path); 83 out.write("\">"); 84 out.write(path); 85 out.write("</a>"); 86 out.write(">"); 90 { out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));} 92 {Number} { out.write("<span class=\"n\">"); out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/perl/ |
H A D | PerlXref.lex | 77 out.write(yytext().substring(0,1)); 82 out.write("<"); 85 out.write("<a href=\""+urlPrefix+"path="); 86 out.write(path); 88 out.write("\">"); 89 out.write(path); 90 out.write("</a>"); 91 out.write(">"); 94 {Number} { out.write("<span class=\"n\">"); out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/clojure/ |
H A D | ClojureXref.lex | 78 {Number} { out.write("<span class=\"n\">"); 79 out.write(yytext()); 80 out.write("</span>"); } 82 \" { yybegin(STRING);out.write("<span class=\"s\">\"");} 83 ";" { yybegin(SCOMMENT);out.write("<span class=\"c\">;");} 87 \" {WhiteSpace} \" { out.write(yytext()); } 88 \" { yybegin(YYINITIAL); out.write("\"</span>"); } 89 \\\\ { out.write("\\\\"); } 90 \\\" { out.write("\\\""); } 95 if (nestedComment++ == 0) { out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/lisp/ |
H A D | LispXref.lex | 78 {Number} { out.write("<span class=\"n\">"); 79 out.write(yytext()); 80 out.write("</span>"); } 82 \" { yybegin(STRING);out.write("<span class=\"s\">\"");} 83 ";" { yybegin(SCOMMENT);out.write("<span class=\"c\">;");} 87 \" {WhiteSpace} \" { out.write(yytext()); } 88 \" { yybegin(YYINITIAL); out.write("\"</span>"); } 89 \\\\ { out.write("\\\\"); } 90 \\\" { out.write("\\\""); } 95 if (nestedComment++ == 0) { out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/pascal/ |
H A D | PascalXref.lex | 69 "begin" { incScope(); out.write(yytext()); } 70 "end" { decScope(); out.write(yytext());} 79 out.write("<"); 82 out.write("<a href=\""+urlPrefix+"path="); 83 out.write(path); 85 out.write("\">"); 86 out.write(path); 87 out.write("</a>"); 88 out.write(">"); 92 { out [all...] |
/opengrok/src/org/opensolaris/opengrok/search/context/ |
H A D | PlainLineTokenizer.lex | 64 Writer out; 77 * @param out The new writer to write to 79 public void setWriter(Writer out) { 81 this.out = out; 107 public void reInit(char[] buf, int len, Writer out, String url, TreeMap<Integer, String[]> tags, Scopes scopes) { 108 reInit(new CharArrayReader(buf, 0, len), out, url, tags, scopes); 111 public void reInit(Reader in, Writer out, String url, TreeMap<Integer, String[]> tags, Scopes scopes) { 123 this.out = out; [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/plain/ |
H A D | PlainXref.lex | 52 out.write("<a href=\"");out.write(urlPrefix);out.write("path="); 53 out.write(s);appendProject();out.write("\">"); 54 out.write(s);out.write("</a>");} 71 {FNameChar}+ { out.write(yytext()); } 73 "&" {out.write( "&");} 74 "<" {out [all...] |
H A D | XMLXref.lex | 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 [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/sh/ |
H A D | ShXref.lex | 62 out.write("</span>"); 65 out.write("<span>"); 67 out.write("<span class=\"" + style + "\">"); 75 out.write("</span>"); 81 out.write("<span>"); 83 out.write("<span class=\"" + style + "\">"); 138 out.write("<a href=\""); 139 out.write(urlPrefix); 140 out.write("refs="); 141 out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/php/ |
H A D | PhpXref.lex | 63 out.write(yycharat(0)); 64 out.write("<strong>"); 65 out.write(Util.htmlize(yytext().substring(1))); 66 out.write("</strong>"); 131 "<" | "</" { out.write(Util.htmlize(yytext())); yypush(TAG_NAME, null); } 134 out.write("<span class=\"c\"><!--"); 141 out.write("<span class=\"n\">"); 142 out.write(yytext()); 143 out.write("</span>"); 148 out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/tcl/ |
H A D | TclXref.lex | 71 {Number} { out.write("<span class=\"n\">"); 72 out.write(yytext()); 73 out.write("</span>"); } 75 \" { yybegin(STRING);out.write("<span class=\"s\">\"");} 76 "#" { yybegin(SCOMMENT);out.write("<span class=\"c\">#");} 80 \" {WhiteSpace} \" { out.write(yytext()); } 81 \" { yybegin(YYINITIAL); out.write("\"</span>"); } 82 \\\\ { out.write("\\\\"); } 83 \\\" { out.write("\\\""); } 88 yybegin(YYINITIAL); out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/erlang/ |
H A D | ErlangXref.lex | 74 out.write("<span class=\"xm\">"); out.write(yytext()); out.write("</span>"); 83 out.write("<"); 86 out.write("<a href=\""+urlPrefix+"path="); 87 out.write(path); 89 out.write("\">"); 90 out.write(path); 91 out.write("</a>"); 92 out [all...] |
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/tools/ |
H A D | JRCS.java | 93 //System.out.println(archive.toString()); 94 //System.out.println(archive.getRevision("5.2.7.1")); 95 //System.out.println(archive.getRevision(args[1], true)); 98 System.out.println("*-orig-*********"); 99 System.out.print(Diff.arrayToString(orig)); 100 System.out.println("**********"); 101 //!! commented out because of package access error (jvz). 103 //System.out.println(Diff.diff(archive.removeKeywords(orig), 120 System.out.println(e.getClass().toString()); 121 System.out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/fortran/ |
H A D | FortranXref.lex | 65 ^{Label} { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); } 68 out.write("<span class=\"c\">"); 69 Util.htmlize(yytext(), out); 78 out.write("<"); 81 out.write("<a href=\""+urlPrefix+"path="); 82 out.write(file);out.write("\">"); 83 out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/uue/ |
H A D | UuencodeXref.lex | 63 out.write("<strong>" + yytext() + "</strong>"); 72 {FNameChar}+ { out.write(yytext()); } 74 "<" {out.write( "<");} 75 "&" {out.write( "&");} 77 {WhiteSpace}+ { out.write(yytext()); } 78 [!-~] { out.write(yycharat(0)); } 83 [ ] { out.write(yycharat(0)); } 87 out.write("<i>" + yytext() + "</i>"); 93 [ ] { out.write(yycharat(0)); } 98 out [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/sql/ |
H A D | PLSQLXref.lex | 70 out.append("<span class=\"n\">").append(yytext()).append("</span>"); 73 "'" { yybegin(STRING); out.append("<span class=\"s\">'"); } 75 \" { yybegin(QUOTED_IDENTIFIER); out.append("<span class=\"s\">\""); } 77 "--" { yybegin(SINGLE_LINE_COMMENT); out.append("<span class=\"c\">--"); } 82 out.append("<span class=\"c\">/*"); 87 "''" { out.append("''"); } 88 "'" { yybegin(YYINITIAL); out.append("'</span>"); } 92 \"\" { out.append("\"\""); } 93 \" { yybegin(YYINITIAL); out.append("\"</span>"); } 99 out [all...] |
H A D | SQLXref.lex | 70 out.append("<span class=\"n\">").append(yytext()).append("</span>"); 73 "'" { yybegin(STRING); out.append("<span class=\"s\">'"); } 75 \" { yybegin(QUOTED_IDENTIFIER); out.append("<span class=\"s\">\""); } 77 "--" { yybegin(SINGLE_LINE_COMMENT); out.append("<span class=\"c\">--"); } 82 out.append("<span class=\"c\">/*"); 87 "''" { out.append("''"); } 88 "'" { yybegin(YYINITIAL); out.append("'</span>"); } 92 \"\" { out.append("\"\""); } 93 \" { yybegin(YYINITIAL); out.append("\"</span>"); } 99 out [all...] |