Lines Matching refs:Assign
313 this->Assign(other);
321 this->Assign(other);
329 this->Assign(std::move(other));
337 this->Assign(std::move(other));
393 this->Assign(std::forward<U>(v));
401 this->Assign(std::forward<U>(v));
600 using internal_statusor::StatusOrData<T>::Assign;
602 void Assign(const absl::StatusOr<U>& other);
604 void Assign(absl::StatusOr<U>&& other);
669 inline void StatusOr<T>::Assign(const StatusOr<U>& other) { in Assign() function
671 this->Assign(*other); in Assign()
679 inline void StatusOr<T>::Assign(StatusOr<U>&& other) { in Assign() function
681 this->Assign(*std::move(other)); in Assign()