Lines Matching refs:no_ref_
233 const_no_ref_ptr_ = &no_ref_; in BindTest()
247 StrictMock<NoRef> no_ref_; member in base::__anon8607446f0111::BindTest
348 Bind(&PolymorphicIdentity<NoRef*>, &no_ref_); in TEST_F()
350 EXPECT_EQ(&no_ref_, normal_non_refcounted_cb.Run()); in TEST_F()
413 EXPECT_CALL(no_ref_, IntMethod0()).WillOnce(Return(12)); in TEST_F()
414 EXPECT_CALL(no_ref_, IntConstMethod0()).WillOnce(Return(13)); in TEST_F()
427 WeakPtrFactory<NoRef> weak_factory(&no_ref_); in TEST_F()
599 EXPECT_CALL(no_ref_, VoidMethod0()); in TEST_F()
600 EXPECT_CALL(no_ref_, VoidConstMethod0()).Times(2); in TEST_F()
603 Bind(&NoRef::VoidMethod0, Unretained(&no_ref_)); in TEST_F()
607 Bind(&NoRef::VoidConstMethod0, Unretained(&no_ref_)); in TEST_F()
622 EXPECT_CALL(no_ref_, VoidMethod0()); in TEST_F()
623 EXPECT_CALL(no_ref_, VoidConstMethod0()).Times(2); in TEST_F()
625 WeakPtrFactory<NoRef> weak_factory(&no_ref_); in TEST_F()