Lines Matching refs:Closure
225 void TakesACallback(const Closure& callback) { in TakesACallback()
315 Closure cb = base::Bind(&TakesACallback, base::Bind(&PtrArgSet, &n)); in TEST_F()
346 Closure normal_cb = Bind(&VoidFunc0); 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()
355 Closure const_method_nonconst_obj_cb = Bind(&HasRef::VoidConstMethod0, in TEST_F()
357 Closure const_method_const_obj_cb = Bind(&HasRef::VoidConstMethod0, in TEST_F()
366 Closure virtual_set_cb = Bind(&Parent::VirtualSet, &child); in TEST_F()
371 Closure non_virtual_set_cb = Bind(&Parent::NonVirtualSet, &child); in TEST_F()
416 Closure normal_func_cb = Bind(IgnoreResult(&IntFunc0)); in TEST_F()
419 Closure non_void_method_cb = in TEST_F()
423 Closure non_void_const_method_cb = in TEST_F()
430 Closure non_void_weak_method_cb = in TEST_F()
434 Closure non_void_weak_const_method_cb = in TEST_F()
628 Closure method_cb = in TEST_F()
632 Closure const_method_cb = in TEST_F()
636 Closure const_method_const_ptr_cb = in TEST_F()
712 base::Closure own_object_cb = in TEST_F()