Searched refs:pcit (Results 1 – 2 of 2) sorted by relevance
132 pair<set<int>::const_iterator, set<int>::const_iterator> pcit; in bounds() local167 pcit = s.equal_range(6); in bounds()168 CPPUNIT_ASSERT( pcit.first != pcit.second ); in bounds()169 CPPUNIT_ASSERT( pcit.first != s.end() ); in bounds()170 CPPUNIT_ASSERT( *pcit.first == 6 ); in bounds()171 CPPUNIT_ASSERT( pcit.second != s.end() ); in bounds()172 CPPUNIT_ASSERT( *pcit.second == 7 ); in bounds()184 pcit = crs.equal_range(6); in bounds()185 CPPUNIT_ASSERT( pcit.first != pcit.second ); in bounds()186 CPPUNIT_ASSERT( pcit.first != crs.end() ); in bounds()[all …]