Definition at line 19 of file sstream_test.cpp.
◆ buf()
void SstreamTest::buf |
( |
| ) |
|
|
protected |
Definition at line 287 of file sstream_test.cpp.
288{
290
291 ss <<
"1234567\n89\n";
311}
#define CPPUNIT_ASSERT(X)
GLenum GLuint GLenum GLsizei const GLchar * buf
Referenced by input_char().
◆ CPPUNIT_TEST() [1/17]
SstreamTest::CPPUNIT_TEST |
( |
buf |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [2/17]
SstreamTest::CPPUNIT_TEST |
( |
err |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [3/17]
◆ CPPUNIT_TEST() [4/17]
SstreamTest::CPPUNIT_TEST |
( |
init_in |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [5/17]
◆ CPPUNIT_TEST() [6/17]
SstreamTest::CPPUNIT_TEST |
( |
input |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [7/17]
◆ CPPUNIT_TEST() [8/17]
SstreamTest::CPPUNIT_TEST |
( |
io |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [9/17]
SstreamTest::CPPUNIT_TEST |
( |
maxint |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [10/17]
◆ CPPUNIT_TEST() [11/17]
SstreamTest::CPPUNIT_TEST |
( |
output |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [12/17]
SstreamTest::CPPUNIT_TEST |
( |
rdbuf |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [13/17]
SstreamTest::CPPUNIT_TEST |
( |
seek |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [14/17]
SstreamTest::CPPUNIT_TEST |
( |
seek_gp |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [15/17]
SstreamTest::CPPUNIT_TEST |
( |
seekp |
| ) |
|
|
private |
◆ CPPUNIT_TEST() [16/17]
◆ CPPUNIT_TEST() [17/17]
SstreamTest::CPPUNIT_TEST |
( |
tellp |
| ) |
|
|
private |
◆ CPPUNIT_TEST_SUITE()
◆ CPPUNIT_TEST_SUITE_END()
SstreamTest::CPPUNIT_TEST_SUITE_END |
( |
| ) |
|
|
private |
◆ err()
void SstreamTest::err |
( |
| ) |
|
|
protected |
Definition at line 173 of file sstream_test.cpp.
174{
176
185}
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
◆ err_long()
void SstreamTest::err_long |
( |
| ) |
|
|
protected |
◆ init_in()
void SstreamTest::init_in |
( |
| ) |
|
|
protected |
Definition at line 227 of file sstream_test.cpp.
228{
231
235
238
242
245
249}
bool are_equals(_Tp val, _Tp ref)
◆ init_out()
void SstreamTest::init_out |
( |
| ) |
|
|
protected |
Definition at line 251 of file sstream_test.cpp.
252{
255
256 os << 67;
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
276
277
278 os.str( "89ab" );
280
281 os << 10;
283
285}
◆ input()
void SstreamTest::input |
( |
| ) |
|
|
protected |
◆ input_char()
void SstreamTest::input_char |
( |
| ) |
|
|
protected |
◆ io()
Definition at line 143 of file sstream_test.cpp.
144{
146 s << 1 <<
'\n' << 2.0 <<
'\n' <<
"abcd\n" <<
"ghk lm\n" <<
"abcd ef";
148
171}
◆ maxint()
void SstreamTest::maxint |
( |
| ) |
|
|
protected |
Definition at line 201 of file sstream_test.cpp.
202{
204
208
212 unsigned long ul = 0;
213
214 s >>
i >>
u >>
l >> ul;
220
225}
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble * u
◆ negative()
void SstreamTest::negative |
( |
| ) |
|
|
protected |
◆ output()
void SstreamTest::output |
( |
| ) |
|
|
protected |
Definition at line 66 of file sstream_test.cpp.
67{
68 {
70
71 s << 1 <<
'\n' << 2.0 <<
'\n' <<
"abcd\n" <<
"ghk lm\n" <<
"abcd ef";
74 }
75
76
77
78 {
84 }
85 {
91 }
92}
__kernel_ptrdiff_t ptrdiff_t
◆ rdbuf()
void SstreamTest::rdbuf |
( |
| ) |
|
|
protected |
Definition at line 313 of file sstream_test.cpp.
314{
316
317 ss <<
"1234567\n89\n";
318
327}
basic_stringbuf< _CharT, _Traits, _Alloc > * rdbuf() const
◆ seek()
void SstreamTest::seek |
( |
| ) |
|
|
protected |
Definition at line 386 of file sstream_test.cpp.
387{
389
391 s.seekg( 6, ios::beg );
393 s.seekg( -3, ios::cur );
395
398 is.seekg( 6, ios::beg );
400 is.seekg( -3, ios::cur );
402}
_Traits::pos_type pos_type
◆ seek_gp()
void SstreamTest::seek_gp |
( |
| ) |
|
|
protected |
Definition at line 419 of file sstream_test.cpp.
420{
422
423
424
425
426
427
428
429
430
431 ss.seekg( 0, ios::beg );
432 ss.seekp( 0, ios::end );
433
435
437
439
440
442}
◆ seekp()
void SstreamTest::seekp |
( |
| ) |
|
|
protected |
◆ streambuf_output()
void SstreamTest::streambuf_output |
( |
| ) |
|
|
protected |
Definition at line 329 of file sstream_test.cpp.
330{
331 {
334
338
342
344
348
354 }
355
356# if !defined (STLPORT) || defined (_STLP_USE_EXCEPTIONS)
357 {
358
361
365
369
370
371
376
382 }
383# endif
384}
◆ tellp()
void SstreamTest::tellp |
( |
| ) |
|
|
protected |
Definition at line 444 of file sstream_test.cpp.
445{
446 {
448
449 o << "23456";
450
453 }
454 {
456
457 o << "123456";
458
461 }
462 {
464
465 o << "23456789";
466
469 }
470}
The documentation for this class was generated from the following file: