Home | History | Annotate | Download | only in base

Lines Matching refs:no_ref_

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