Home | History | Annotate | Download | only in base

Lines Matching refs:no_ref_

234     const_no_ref_ptr_ = &no_ref_;
248 StrictMock<NoRef> no_ref_;
349 Bind(&PolymorphicIdentity<NoRef*>, &no_ref_);
351 EXPECT_EQ(&no_ref_, normal_non_refcounted_cb.Run());
414 EXPECT_CALL(no_ref_, IntMethod0()).WillOnce(Return(12));
415 EXPECT_CALL(no_ref_, IntConstMethod0()).WillOnce(Return(13));
428 WeakPtrFactory<NoRef> weak_factory(&no_ref_);
600 EXPECT_CALL(no_ref_, VoidMethod0());
601 EXPECT_CALL(no_ref_, VoidConstMethod0()).Times(2);
604 Bind(&NoRef::VoidMethod0, Unretained(&no_ref_));
608 Bind(&NoRef::VoidConstMethod0, Unretained(&no_ref_));
623 EXPECT_CALL(no_ref_, VoidMethod0());
624 EXPECT_CALL(no_ref_, VoidConstMethod0()).Times(2);
626 WeakPtrFactory<NoRef> weak_factory(&no_ref_);