Lines Matching refs:this
144 // If the compiler warns about unused typedefs then enable this:
172 - std::size_t count = this->delete_nodes(prev, end);
173 + std::size_t count_var = this->delete_nodes(prev, end_var);
174 this->fix_bucket(bucket_index, prev);
187 - std::size_t bucket_index = this->hash_to_bucket(begin->hash_);
188 + std::size_t bucket_index = this->hash_to_bucket(begin_arg->hash_);
202 prev = this->get_previous_start(bucket_index);
210 this->delete_nodes(prev, group_end);
211 bucket_index = this->fix_bucket(bucket_index, prev);
270 - assign_nodes<table> assign(*this);
271 - table_impl::fill_buckets(x.begin(), *this, assign);
272 + assign_nodes<table> assign_var(*this);
273 + table_impl::fill_buckets(x.begin(), *this, assign_var);
281 - move_assign_nodes<table> assign(*this);
282 + move_assign_nodes<table> assign_var(*this);
284 - table_impl::fill_buckets(nodes.begin(), *this, assign);
285 + table_impl::fill_buckets(nodes.begin(), *this, assign_var);
296 - std::size_t count = this->delete_nodes(prev, end);
297 + std::size_t count_var = this->delete_nodes(prev, end);
298 this->fix_bucket(bucket_index, prev);
311 - std::size_t bucket_index = this->hash_to_bucket(begin->hash_);
312 + std::size_t bucket_index = this->hash_to_bucket(begin_arg->hash_);
316 link_pointer prev = this->get_previous_start(bucket_index);
322 this->delete_node(prev);
323 bucket_index = this->fix_bucket(bucket_index, prev);