Lines Matching full:write

18     """A file-like object used to write a single logical stream of data into
51 def write(self, data, implicit=False): member in LogfileStream
52 """Write data to the log stream.
55 data: The data to write tot he file.
66 self.logfile.write(self, data, implicit)
68 self.chained_file.write(data)
133 self.chained_file.write(msg)
134 self.logfile.write(self, msg)
165 self.logfile.write(self, output)
167 self.chained_file.write(output)
213 fn: The filename to write to.
229 self.f.write('''\
307 self.f.write('''\
339 """Write HTML to the log file to terminate the current stream's data.
351 self.f.write('</pre>\n')
352 self.f.write('<div class="stream-trailer block-trailer">End stream: ' +
354 self.f.write('</div>\n')
355 self.f.write('</div>\n')
359 """Write a note or one-off message to the log file.
372 self.f.write('<div class="' + note_type + '">\n')
374 self.f.write('<a href="#%s">\n' % anchor)
375 self.f.write('<pre>')
376 self.f.write(self._escape(msg))
377 self.f.write('\n</pre>\n')
379 self.f.write('</a>\n')
380 self.f.write('</div>\n')
401 self.f.write('<div class="section block" id="' + anchor + '">\n')
402 self.f.write('<div class="section-header block-header">Section: ' +
404 self.f.write('<div class="section-content block-content">\n')
432 self.f.write('<div class="section-trailer block-trailer">' +
434 self.f.write('</div>\n')
435 self.f.write('</div>\n')
460 """Write an error note to the log file.
472 """Write an warning note to the log file.
484 """Write an informational note to the log file.
496 """Write an action note to the log file.
511 """Write a timestamp to the log file.
533 """Write a note to the log file describing test(s) which passed.
546 """Write a note to the log file describing skipped test(s).
559 """Write a note to the log file describing xfailed test(s).
572 """Write a note to the log file describing xpassed test(s).
585 """Write a note to the log file describing failed test(s).
601 write a single stream's data to the log file. The implementation will
631 def write(self, stream, data, implicit=False): member in Logfile
632 """Write stream data into the log file.
652 self.f.write('<div class="stream block">\n')
653 self.f.write('<div class="stream-header block-header">Stream: ' +
655 self.f.write('<div class="stream-content block-content">\n')
656 self.f.write('<pre>')
658 self.f.write('<span class="implicit">')
659 self.f.write(self._escape(data))
661 self.f.write('</span>')