Lines Matching refs:write

46  * [Print]FileWriter to write the XML to. Call the {@link #begin()} or
67 * @param out the FileWriter to write the XML to
76 * @param out the FileWriter to write the XML to
87 * Write <em>unescaped</em> text into the XML file. To write
89 * @param s the text to write. This String will not be escaped.
91 public void write(String s) throws IOException {
92 m_out.write(s);
97 * a newline. To write escaped text, use the {@link #content(String)}
99 * @param s the text to write. This String will not be escaped.
102 m_out.write(s);
103 m_out.write("\n");
110 m_out.write("\n");
119 m_out.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
133 m_out.write(header);
144 m_out.write("<!-- ");
145 m_out.write(comment);
146 m_out.write(" -->");
163 m_out.write('<');
164 m_out.write(tag);
166 m_out.write(' ');
167 m_out.write(names[i]);
168 m_out.write('=');
169 m_out.write('\"');
171 m_out.write('\"');
173 if ( close ) m_out.write('/');
174 m_out.write('>');
215 m_out.write(name);
216 m_out.write('=');
217 m_out.write('\"');
219 m_out.write('\"');
233 m_out.write('<');
234 m_out.write(tag);
235 m_out.write(' ');
236 m_out.write(name);
237 m_out.write('=');
238 m_out.write('\"');
240 m_out.write('\"');
241 if ( close ) m_out.write('/');
242 m_out.write('>');
287 m_out.write('<');
288 m_out.write(tag);
290 m_out.write(' ');
291 m_out.write((String)names.get(i));
292 m_out.write('=');
293 m_out.write('\"');
295 m_out.write('\"');
297 if ( close ) m_out.write('/');
298 m_out.write('>');
348 m_out.write('<');
349 m_out.write('/');
350 m_out.write(tag);
351 m_out.write('>');
366 m_out.write('<'); m_out.write(tag); m_out.write(' ');
367 m_out.write(name); m_out.write('=');
368 m_out.write('\"'); escapeString(value); m_out.write('\"');
369 m_out.write('>');
371 m_out.write('<'); m_out.write('/'); m_out.write(tag); m_out.write('>');
383 m_out.write('<'); m_out.write(tag); m_out.write('>');
385 m_out.write('<'); m_out.write('/'); m_out.write(tag); m_out.write('>');
412 m_out.write(footer);
426 m_out.write(' ');
447 m_out.write("null");
460 m_out.write("&#");
461 m_out.write(Integer.toString(c));
462 m_out.write(';');
470 m_out.write(VALID[j]);
476 m_out.write(c);