Home | History | Annotate | Download | only in unit

Lines Matching refs:b2

39   bitset<13U> b2(0x1111);
42 CPPUNIT_ASSERT(b2.size() == 13);
43 CPPUNIT_ASSERT(b2 == 0x1111);
46 b1 = b1 ^ (b2 << 2);
50 CPPUNIT_ASSERT(b2.count() == 4);
53 size_t __pos = b2._Find_first();
55 __pos = b2._Find_next(__pos);
57 __pos = b2._Find_next(__pos);
59 __pos = b2._Find_next(__pos);
61 __pos = b2._Find_next(__pos);
67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >();
70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
74 CPPUNIT_ASSERT( b2.to_string() == "1000100010001" );