Home | History | Annotate | Download | only in base

Lines Matching defs:owns_data_

133   HashSet() : num_elements_(0), num_buckets_(0), owns_data_(false), data_(nullptr),
138 HashSet(const HashSet& other) : num_elements_(0), num_buckets_(0), owns_data_(false),
143 HashSet(HashSet&& other) : num_elements_(0), num_buckets_(0), owns_data_(false),
164 owns_data_ = false;
208 std::swap(owns_data_, other.owns_data_);
443 owns_data_ = true;
452 if (owns_data_) {
457 owns_data_ = false;
482 const bool owned_data = owns_data_;
530 bool owns_data_; // If we own data_ and are responsible for freeing it.