Home | History | Annotate | Download | only in base

Lines Matching refs:VoidMethod0

27   MOCK_METHOD0(VoidMethod0, void(void));
145 void VoidMethod0() {}
230 static_func_mock_ptr->VoidMethod0();
329 EXPECT_CALL(static_func_mock_, VoidMethod0());
332 EXPECT_CALL(has_ref_, VoidMethod0()).Times(2);
341 Closure method_cb = Bind(&HasRef::VoidMethod0, &has_ref_);
342 Closure method_refptr_cb = Bind(&HasRef::VoidMethod0,
585 EXPECT_CALL(no_ref_, VoidMethod0());
589 Bind(&NoRef::VoidMethod0, Unretained(&no_ref_));
608 EXPECT_CALL(no_ref_, VoidMethod0());
615 Bind(&NoRef::VoidMethod0, weak_factory.GetWeakPtr());
699 Bind(&DeleteCounter::VoidMethod0, Owned(counter));