Searched defs:ScopedTypeRef (Results 1 – 3 of 3) sorted by relevance
78 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that) : object_(that.get()) { in ScopedTypeRef() function85 ScopedTypeRef(const ScopedTypeRef<R, RTraits>& that) : object_(that.get()) { in ScopedTypeRef() function106 ScopedTypeRef(ScopedTypeRef<T, Traits>&& that) : object_(that.release()) {} in ScopedTypeRef() function109 ScopedTypeRef(ScopedTypeRef<R, RTraits>&& that) : object_(that.release()) {} in ScopedTypeRef() function
38 ScopedTypeRef() : ptr_(Traits::InvalidValue()) {} in ScopedTypeRef() function39 explicit ScopedTypeRef(T ptr) : ptr_(ptr) {} in ScopedTypeRef() function40 ScopedTypeRef(T ptr, RetainPolicy policy) : ScopedTypeRef(ptr) { in ScopedTypeRef() function45 ScopedTypeRef(const ScopedTypeRef<T, Traits>& rhs) : ptr_(rhs.ptr_) { in ScopedTypeRef() function
64 ScopedTypeRef(const ScopedTypeRef<T, Traits>& that) : object_(that.object_) { in ScopedTypeRef() function72 explicit ScopedTypeRef(const ScopedTypeRef<R, RTraits>& that_as_subclass) in ScopedTypeRef() function79 ScopedTypeRef(ScopedTypeRef<T, Traits>&& that) : object_(that.object_) { in ScopedTypeRef() function