Lines Matching defs:operator
164 // Invoke operator=.
184 // Invoke operator=.
188 BasicCrossThreadPersistent& operator=(
198 BasicCrossThreadPersistent& operator=(
207 BasicCrossThreadPersistent& operator=(BasicCrossThreadPersistent&& other) {
211 PersistentBase::operator=(std::move(other));
212 LocationPolicy::operator=(std::move(other));
226 BasicCrossThreadPersistent& operator=(T* other) {
236 BasicCrossThreadPersistent& operator=(
240 return operator=(member.Get());
248 BasicCrossThreadPersistent& operator=(std::nullptr_t) {
258 BasicCrossThreadPersistent& operator=(SentinelPointer s) {
306 explicit operator bool() const { return Get(); }
315 operator T*() const { return Get(); }
322 T* operator->() const { return Get(); }
323 T& operator*() const { return *Get(); }