Home | History | Annotate | Download | only in unit

Lines Matching refs:xx

377   string xx;
379 CPPUNIT_ASSERT( xx.data() != 0 ); // ISO-IEC-14882:1998(E), 21.3.6, paragraph 3
392 xx = "123456";
393 xx += low;
394 if ( strcmp( xx.data(), "1234562004-01-01" ) != 0 ) {
400 xx = "1234";
401 xx += ";";
403 if ( strcmp( xx.data(), "1234;" ) != 0 ) {
413 string xx;
420 xx = "123456";
421 xx += low;
422 CPPUNIT_ASSERT( strcmp( xx.c_str(), "1234562004-01-01" ) == 0 );
426 xx = "1234";
427 xx += ";";
428 CPPUNIT_ASSERT( strcmp( xx.c_str(), "1234;" ) == 0 );