Lines Matching refs:c2
228 Table c2; in Examine() local
231 c2.insert( lst.begin(), begin5 ); in Examine()
232 std::for_each( lst.begin(), begin5, check_value<default_construction_present, Table>( c2 ) ); in Examine()
234 c2.swap( c ); in Examine()
235 CHECK(CompareTables<value_type>::IsEqual( c2, const_c )); in Examine()
237 std::for_each( lst.begin(), lst.end(), check_value<default_construction_present,Table>(c2) ); in Examine()
239 swap( c, c2 ); in Examine()
241 CHECK(c2.size() == 5); in Examine()
243 c2.clear(); in Examine()
244 CHECK(CompareTables<value_type>::IsEqual( c2, Table() )); in Examine()
270 ch_map c2( il ); in TypeTester() local
271 c2.insert( it, lst.end() ); in TypeTester()
272 Examine<default_construction_present>( c2, lst ); in TypeTester()