Home | History | Annotate | Download | only in base

Lines Matching refs:scoper_

381       : is_valid_(true), scoper_(std::move(scoper)) {}
383 : is_valid_(other.is_valid_), scoper_(std::move(other.scoper_)) {}
387 return std::move(scoper_);
392 mutable T scoper_;
401 : is_valid_(true), scoper_(std::move(scoper)) {}
403 : is_valid_(other.is_valid_), scoper_(std::move(other.scoper_)) {}
408 return std::move(scoper_);
413 mutable std::unique_ptr<T, D> scoper_;
421 : is_valid_(true), scoper_(std::move(scoper)) {}
423 : is_valid_(other.is_valid_), scoper_(std::move(other.scoper_)) {}
428 return std::move(scoper_);
433 mutable std::vector<std::unique_ptr<T, D>, A> scoper_;
441 : is_valid_(true), scoper_(std::move(scoper)) {}
443 : is_valid_(other.is_valid_), scoper_(std::move(other.scoper_)) {}
448 return std::move(scoper_);
453 mutable std::map<K, std::unique_ptr<T, D>, C, A> scoper_;