Searched refs:_o (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/
H A DTRPIFormatter.h25 _o(o),
36 (*_o) << "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>" << endl;
37 (*_o) << "<component name=\"inkscape\" version=\"0.43+svn\" xmlns=\"http://www.spikesource.com/xsd/2005/04/TRPI\">" << endl;
38 (*_o) << " <description>TBD</description>" << endl;
39 (*_o) << " <summary>single-line info</summary>" << endl;
40 (*_o) << " <license></license>" << endl;
41 (*_o) << " <vendor></vendor>" << endl;
42 (*_o) << " <release>devel SVN</release>" << endl;
43 (*_o) << " <url>http://www.inkscape.org/</url>" << endl;
44 // (*_o) << " <roo
174 OutputStream *_o; member in class:CxxTest::TRPIFormatter
[all...]
H A DPylogFormatter.h26 _o(o),
36 (*_o) << "**************************************************" << endl;
37 _o->flush();
54 (*_o) << _base.c_str() << "_";
56 (*_o) << "_";
58 (*_o) << " ";
61 (*_o) << test.suiteName() << "_|_" << test.testName();
62 (*_o) << " ";
66 (*_o) << " ";
69 (*_o) << "
363 OutputStream *_o; member in class:CxxTest::PylogFormatter
[all...]
H A DMultiPrinter.h81 CXXTEST_STD(ostream) &_o; member in class:CxxTest::MultiPrinter::FileAdapter
84 FileAdapter( CXXTEST_STD(ostream) &o ) : _o(o) {} function in class:CxxTest::MultiPrinter::FileAdapter
85 void flush() { _o.flush(); }
86 OutputStream &operator<<( const char *s ) { _o << s; return *this; }
92 _o << s;
/inkscape/cxxtest/cxxtest/
H A DStdioFilePrinter.h29 FILE *_o; member in class:CxxTest::StdioFilePrinter::Adapter
32 Adapter( FILE *o ) : _o(o) {}
33 void flush() { fflush( _o ); }
34 OutputStream &operator<<( unsigned i ) { fprintf( _o, "%u", i ); return *this; }
35 OutputStream &operator<<( const char *s ) { fputs( s, _o ); return *this; }
H A DErrorPrinter.h38 CXXTEST_STD(ostream) &_o;
40 Adapter( CXXTEST_STD(ostream) &o ) : _o(o) {}
41 void flush() { _o.flush(); }
42 OutputStream &operator<<( const char *s ) { _o << s; return *this; }
48 _o << s;
H A DErrorFormatter.h39 _o(o),
53 (*_o) << "Running " << totalTests;
54 _o->flush();
79 ((*_o) << ".").flush();
87 (*_o) << "OK!" << endl;
91 (*_o) << "Failed " << tracker().failedTests() << " of " << totalTests << endl;
93 (*_o) << "Success rate: " << (numPassed * 100 / desc.numTotalTests()) << "%" << endl;
137 (*_o) << " differs from" << endl;
210 return _o;
221 return (*_o) << fil
275 OutputStream *_o; member in class:CxxTest::ErrorFormatter
[all...]

Completed in 786 milliseconds