Home
last modified time | relevance | path

Searched refs:has_ref_ (Results 1 – 1 of 1) sorted by relevance

/external/libchrome/base/
Dbind_unittest.cc327 const_has_ref_ptr_ = &has_ref_; in BindTest()
344 StrictMock<HasRef> has_ref_; member in base::__anon398078b80111::BindTest
450 EXPECT_CALL(has_ref_, AddRef()).Times(2); in TEST_F()
451 EXPECT_CALL(has_ref_, Release()).Times(2); in TEST_F()
452 EXPECT_CALL(has_ref_, IntMethod0()).WillOnce(Return(10)); in TEST_F()
453 EXPECT_CALL(has_ref_, IntConstMethod0()).WillOnce(Return(11)); in TEST_F()
461 BindRepeating(IgnoreResult(&HasRef::IntMethod0), &has_ref_); in TEST_F()
465 BindRepeating(IgnoreResult(&HasRef::IntConstMethod0), &has_ref_); in TEST_F()
488 EXPECT_CALL(has_ref_, AddRef()).Times(2); in TEST_F()
489 EXPECT_CALL(has_ref_, Release()).Times(2); in TEST_F()
[all …]