Lines Matching refs:out
127 * Prints out results in html form. The following search helper fields are
139 * @param out write destination
147 public static void prettyPrint(Writer out, SearchHelper sh, int start,
161 out.write("<tr class=\"dir\"><td colspan=\"3\"><a href=\"");
162 out.write(xrefPrefixE);
163 out.write(Util.URIEncodePath(parent));
164 out.write("/\">");
165 out.write(parent); // htmlize ???
166 out.write("/</a>");
168 out.write(" - <i>");
169 out.write(sh.desc.get(parent)); // htmlize ???
170 out.write("</i>");
172 out.write("</td></tr>");
176 out.write("<tr><td class=\"q\"><a href=\"");
177 out.write(histPrefixE);
178 out.write(rpathE);
179 out.write("\" title=\"History\">H</a> <a href=\"");
180 out.write(xrefPrefixE);
181 out.write(rpathE);
182 out.write("?a=true\" title=\"Annotate\">A</a> <a href=\"");
183 out.write(rawPrefixE);
184 out.write(rpathE);
185 out.write("\" title=\"Download\">D</a>");
186 out.write("</td>");
187 out.write("<td class=\"f\"><a href=\"");
188 out.write(xrefPrefixE);
189 out.write(rpathE);
190 out.write("\">");
191 out.write(rpath.substring(rpath.lastIndexOf('/') + 1)); // htmlize ???
192 out.write("</a></td><td><tt class=\"con\">");
205 out.write(sh.summerizer.getSummary(xtags).toString());
208 out.write(sh.summerizer.getSummary(htags).toString());
213 sh.sourceContext.getContext(r, out, xrefPrefix,
219 rpath, out, sh.contextPath);
221 out.write("</tt></td></tr>\n");