HomeSort by relevance Sort by last modified time
    Searched refs:BindOnce (Results 1 - 5 of 5) sorted by null

  /external/libchrome/base/
critical_closure.h 62 return base::BindOnce(
bind_unittest.cc 418 OnceCallback<int(int)> c0 = BindOnce(&Sum, 1, 2, 4, 8, 16);
428 c0 = BindOnce(&Sum, 2, 3, 5, 7, 11);
430 // BindOnce can handle a rvalue-reference of OnceCallback as the target
432 OnceCallback<int()> c1 = BindOnce(std::move(c0), 13);
436 EXPECT_EQ(41, BindOnce(c2, 13).Run());
490 OnceClosure normal_func_cb = BindOnce(IgnoreResult(&IntFunc0));
494 BindOnce(IgnoreResult(&HasRef::IntMethod0), &has_ref_);
498 BindOnce(IgnoreResult(&HasRef::IntConstMethod0), &has_ref_);
505 BindOnce(IgnoreResult(&NoRef::IntMethod0),
508 BindOnce(IgnoreResult(&NoRef::IntConstMethod0)
    [all...]
bind.h 30 BindOnce(Functor&& functor, Args&&... args) {
callback_helpers_unittest.cc 28 base::OnceClosure cb2 = base::BindOnce(&Increment, &run_count);
callback_unittest.cc 149 OnceClosure cb3 = BindOnce([] {});

Completed in 85 milliseconds