• Home
  • Raw
  • Download

Lines Matching refs:m_out

60     private FileWriter m_out;  field in XMLWriter
82 m_out = out; in XMLWriter()
92 m_out.write(s); in write()
102 m_out.write(s); in writeln()
103 m_out.write("\n"); in writeln()
110 m_out.write("\n"); in writeln()
119 m_out.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); in begin()
133 m_out.write(header); in begin()
144 m_out.write("<!-- "); in comment()
145 m_out.write(comment); in comment()
146 m_out.write(" -->"); in comment()
163 m_out.write('<'); in tag()
164 m_out.write(tag); in tag()
166 m_out.write(' '); in tag()
167 m_out.write(names[i]); in tag()
168 m_out.write('='); in tag()
169 m_out.write('\"'); in tag()
171 m_out.write('\"'); in tag()
173 if ( close ) m_out.write('/'); in tag()
174 m_out.write('>'); in tag()
215 m_out.write(name); in addAttribute()
216 m_out.write('='); in addAttribute()
217 m_out.write('\"'); in addAttribute()
219 m_out.write('\"'); in addAttribute()
233 m_out.write('<'); in tag()
234 m_out.write(tag); in tag()
235 m_out.write(' '); in tag()
236 m_out.write(name); in tag()
237 m_out.write('='); in tag()
238 m_out.write('\"'); in tag()
240 m_out.write('\"'); in tag()
241 if ( close ) m_out.write('/'); in tag()
242 m_out.write('>'); in tag()
287 m_out.write('<'); in tag()
288 m_out.write(tag); in tag()
290 m_out.write(' '); in tag()
291 m_out.write((String)names.get(i)); in tag()
292 m_out.write('='); in tag()
293 m_out.write('\"'); in tag()
295 m_out.write('\"'); in tag()
297 if ( close ) m_out.write('/'); in tag()
298 m_out.write('>'); in tag()
348 m_out.write('<'); in end()
349 m_out.write('/'); in end()
350 m_out.write(tag); in end()
351 m_out.write('>'); in end()
366 m_out.write('<'); m_out.write(tag); m_out.write(' '); in contentTag()
367 m_out.write(name); m_out.write('='); in contentTag()
368 m_out.write('\"'); escapeString(value); m_out.write('\"'); in contentTag()
369 m_out.write('>'); in contentTag()
371 m_out.write('<'); m_out.write('/'); m_out.write(tag); m_out.write('>'); in contentTag()
383 m_out.write('<'); m_out.write(tag); m_out.write('>'); in contentTag()
385 m_out.write('<'); m_out.write('/'); m_out.write(tag); m_out.write('>'); in contentTag()
402 m_out.flush(); in finish()
412 m_out.write(footer); in finish()
413 m_out.flush(); in finish()
426 m_out.write(' '); in spacing()
447 m_out.write("null"); in escapeString()
460 m_out.write("&#"); in escapeString()
461 m_out.write(Integer.toString(c)); in escapeString()
462 m_out.write(';'); in escapeString()
470 m_out.write(VALID[j]); in escapeString()
476 m_out.write(c); in escapeString()