Home | History | Annotate | Download | only in fxcrt

Lines Matching full:that

2 // Use of this source code is governed by a BSD-style license that can be
25 ObservedPtr(const ObservedPtr& that) : ObservedPtr(that.Get()) {}
41 ObservedPtr& operator=(const ObservedPtr& that) {
42 Reset(that.Get());
45 bool operator==(const ObservedPtr& that) const {
46 return m_pObservable == that.m_pObservable;
48 bool operator!=(const ObservedPtr& that) const { return !(*this == that); }
59 Observable(const Observable& that) = delete;
74 Observable& operator=(const Observable& that) = delete;