Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:SmartPtr

85 class SmartPtr {
87 SmartPtr(T* p) : ptr_(p) { }
88 SmartPtr(const SmartPtr<T>& p) : ptr_(p.ptr_) { }
89 ~SmartPtr();
2704 SmartPtr<Mutex> getMutexPtr();
2726 SmartPtr<Mutex> mu_;
2840 SmartPtr<Foo> foo;
4327 SmartPtr<int> sp GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
4328 SmartPtr<Cell> sq GUARDED_BY(mu1) PT_GUARDED_BY(mu2);
4489 SmartPtr<Mutex> mu;
4503 SmartPtr<Mutex> mu;
4782 SmartPtr<Foo> foosp PT_GUARDED_BY(mu);