Lines Matching refs:VoidMethod0
32 MOCK_METHOD0(VoidMethod0, void());
155 void VoidMethod0() {} in VoidMethod0() function in base::__anon722688b40111::DeleteCounter
241 static_func_mock_ptr->VoidMethod0(); in VoidFunc0()
340 EXPECT_CALL(static_func_mock_, VoidMethod0()); in TEST_F()
343 EXPECT_CALL(has_ref_, VoidMethod0()).Times(2); in TEST_F()
352 Closure method_cb = Bind(&HasRef::VoidMethod0, &has_ref_); in TEST_F()
353 Closure method_refptr_cb = Bind(&HasRef::VoidMethod0, in TEST_F()
599 EXPECT_CALL(no_ref_, VoidMethod0()); in TEST_F()
603 Bind(&NoRef::VoidMethod0, Unretained(&no_ref_)); in TEST_F()
622 EXPECT_CALL(no_ref_, VoidMethod0()); in TEST_F()
629 Bind(&NoRef::VoidMethod0, weak_factory.GetWeakPtr()); in TEST_F()
713 Bind(&DeleteCounter::VoidMethod0, Owned(counter)); in TEST_F()