Home
last modified time | relevance | path

Searched refs:m_aOut (Results 1 – 4 of 4) sorted by relevance

/AOO41X/main/qadevOOo/runner/convwatch/
H A DHTMLOutputter.java32 FileWriter m_aOut; field in HTMLOutputter
52 a.m_aOut = new FileWriter(outputFile.toString()); in create()
71 m_aOut.write( "<html>" + ls); in header()
72 m_aOut.write( "<head>" + ls); in header()
73 m_aOut.write( "<title>" + _sTitle + "</title>" + ls); in header()
74m_aOut.write( "<link rel=\"stylesheet\" type=\"text/css\" href=\"/gfxcmp_ui/xmloff.css\" media=\"s… in header()
75m_aOut.write( "<link rel=\"stylesheet\" type=\"text/css\" href=\"/gfxcmp_ui/style.css\" media=\"sc… in header()
76 m_aOut.write( "</head>" + ls); in header()
77 m_aOut.write( "<body bgcolor=white>" + ls); in header()
78 m_aOut.flush(); in header()
[all …]
H A DINIOutputter.java31 FileWriter m_aOut; field in INIOutputter
50 a.m_aOut = new FileWriter(outputFile.toString()); in create()
70 m_aOut.write("; This file is automatically created by a convwatch run" + ls); in createHeader()
71 m_aOut.write("; " + ls); in createHeader()
72m_aOut.write("; If you see this file in a browser you may have forgotten to set the follows in the… in createHeader()
73m_aOut.write("; " + PropertyName.DOC_COMPARATOR_HTML_OUTPUT_PREFIX + "=http://lla-1.germany/gfxcmp… in createHeader()
74 m_aOut.write("; Please check the documentation if you got confused." + ls); in createHeader()
75 m_aOut.write("; " + ls); in createHeader()
76 m_aOut.write("; " + ls); in createHeader()
87 m_aOut.write("[" + _sSectionName + "]" + ls); in writeSection()
[all …]
H A DLISTOutputter.java31 FileWriter m_aOut; field in LISTOutputter
49 a.m_aOut = new FileWriter(outputFile.toString()); in create()
68 m_aOut.write("# This file is automatically created by a convwatch run" + ls); in createHeader()
69 m_aOut.write("# " + ls); in createHeader()
80 m_aOut.write(_sValue + ls); in writeValue()
81 m_aOut.flush(); in writeValue()
92 m_aOut.flush(); in close()
93 m_aOut.close(); in close()
/AOO41X/main/qadevOOo/runner/graphical/
H A DHTMLResult.java33 private FileWriter m_aOut; field in HTMLResult
51 m_aOut = new FileWriter(outputFile.toString()); in HTMLResult()
71 m_aOut.write( _sStr ); in writeln()
72 m_aOut.write ( ls ); in writeln()
82 m_aOut.flush(); in flush()
190 m_aOut.close(); in close()