Lines Matching refs:my_c
75 Table &my_c; member in test_insert_by_key
78 test_insert_by_key( Table &c, const value_type &value ) : my_c(c), my_value(value) {} in test_insert_by_key()
82 CHECK(my_c.insert( a, my_value.first )); in operator ()()
88 CHECK(!my_c.insert( ca, my_value.first )); in operator ()()
98 Table &my_c; member in test_range
102 …:list<value_type> &lst, std::vector<detail::atomic_type<bool>> &marks ) : my_c(c), my_lst(lst), my… in test_range()
126 Table &my_c; member in check_value
128 check_value( Table &c ) : my_c(c) {} in check_value()
130 const Table &const_c = my_c; in operator ()()
131 CHECK(my_c.count( value.first ) == 1); in operator ()()
135 CHECK(my_c.find( ca, value.first )); in operator ()()
140 CHECK(my_c.erase( ca )); in operator ()()
141 CHECK(my_c.count( value.first ) == 0); in operator ()()
143 CHECK(my_c.insert( ca, value )); in operator ()()
149 CHECK(my_c.find( a, value.first )); in operator ()()
154 CHECK(my_c.erase( a )); in operator ()()
155 CHECK(my_c.count( value.first ) == 0); in operator ()()
157 CHECK(my_c.insert( a, value )); in operator ()()
162 CHECK(my_c.erase( value.first )); in operator ()()
163 CHECK(my_c.count( value.first ) == 0); in operator ()()
164 …efault_construction_test<default_construction_present>()(test_insert_by_key<Table>( my_c, value )); in operator ()()
166 CHECK(my_c.insert( value ) != default_construction_present); in operator ()()
168 std::pair<iterator,iterator> r1 = my_c.equal_range( value.first ); in operator ()()