Home | History | Annotate | Download | only in base

Lines Matching refs:AddRef

42   MOCK_CONST_METHOD0(AddRef, void(void));
60 void AddRef(void) const {}
330 EXPECT_CALL(has_ref_, AddRef()).Times(5);
371 EXPECT_CALL(has_ref_, AddRef()).Times(3);
398 EXPECT_CALL(has_ref_, AddRef()).Times(2);
559 // AddRef() and Release().
560 // - Class with AddRef() and Release()
561 // - Class without AddRef() and Release()
562 // - Derived Class with AddRef() and Release()
563 // - Derived Class without AddRef() and Release()
564 // - Derived Class with AddRef() and Release() and a private destructor.
667 // BUG: The scoped_refptr should cause the only AddRef()/Release() pair. But
671 EXPECT_CALL(has_ref_, AddRef()).Times(2);