Lines Matching defs:operator
163 // Invoke operator=.
183 // Invoke operator=.
187 BasicCrossThreadPersistent& operator=(
197 BasicCrossThreadPersistent& operator=(
206 BasicCrossThreadPersistent& operator=(BasicCrossThreadPersistent&& other) {
210 PersistentBase::operator=(std::move(other));
211 LocationPolicy::operator=(std::move(other));
225 BasicCrossThreadPersistent& operator=(T* other) {
234 BasicCrossThreadPersistent& operator=(
238 return operator=(member.Get());
246 BasicCrossThreadPersistent& operator=(std::nullptr_t) {
256 BasicCrossThreadPersistent& operator=(SentinelPointer s) {
304 explicit operator bool() const { return Get(); }
313 operator T*() const { return Get(); }
320 T* operator->() const { return Get(); }
321 T& operator*() const { return *Get(); }