Home | History | Annotate | Download | only in util

Lines Matching refs:append

41             if (i != 0) s.append (delimiter);
42 s.append (strings [i]);
180 public static void HTMLEscape (final String s, final StringBuffer append)
183 if (append == null) throw new IllegalArgumentException ("null input: append");
195 append.append ("<");
199 append.append (">");
203 append.append (""");
207 append.append ("&");
211 append.append (c);
221 public static void HTMLEscapeNB (final String s, final StringBuffer append)
224 if (append == null) throw new IllegalArgumentException ("null input: append");
236 append.append ('\u00A0'); // don't use " ": a waste of space
240 append.append ("\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0\u00A0"); // TODO: define a prop for this
244 // append.append ((char) 0x8209);
248 append.append ("<");
252 append.append (">");
256 append.append (""");
260 append.append ("&");
264 append.append (c);