Lines Matching refs:T
25 template <typename T>
26 ObjectLock<T>::ObjectLock(Thread* self, Handle<T> object) : self_(self), obj_(object) { in ObjectLock()
31 template <typename T>
32 ObjectLock<T>::~ObjectLock() { in ~ObjectLock()
36 template <typename T>
37 void ObjectLock<T>::WaitIgnoringInterrupts() { in WaitIgnoringInterrupts()
41 template <typename T>
42 void ObjectLock<T>::Notify() { in Notify()
46 template <typename T>
47 void ObjectLock<T>::NotifyAll() { in NotifyAll()
51 template <typename T>
52 ObjectTryLock<T>::ObjectTryLock(Thread* self, Handle<T> object) : self_(self), obj_(object) { in ObjectTryLock()
57 template <typename T>
58 ObjectTryLock<T>::~ObjectTryLock() { in ~ObjectTryLock()