Searched defs:htmlize (Results 1 - 4 of 4) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/search/
H A DSummary.java24 public static String htmlize(String q) { method in class:Summary
59 public String toString() { return htmlize(text); }
/opengrok/test/org/opensolaris/opengrok/web/
H A DUtilTest.java56 public void htmlize() throws IOException { method in class:UtilTest
66 assertEquals(in_out[1], Util.htmlize(in_out[0]));
69 Util.htmlize(in_out[0], sb);
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DJFlexXref.java229 Util.htmlize(url, out);
467 protected String htmlize(String raw) { method in class:JFlexXref
498 out.write(htmlize(scope.getName() + scope.getSignature()));
/opengrok/src/org/opensolaris/opengrok/web/
H A DUtil.java86 public static String htmlize(CharSequence q) { method in class:Util
89 htmlize(q, sb);
108 public static void htmlize(CharSequence q, Appendable dest) method in class:Util
111 htmlize(q.charAt(i), dest);
124 public static void htmlize(char[] cs, int length, Appendable dest) method in class:Util
131 htmlize(cs[i], dest);
143 private static void htmlize(char c, Appendable dest) throws IOException { method in class:Util
162 private static final String versionP = htmlize(Info.getRevision());
547 htmlize(r, buf);
569 htmlize(
[all...]

Completed in 13 milliseconds