Searched defs:has_ref_ (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/base/
H A Dbind_unittest.cc221 const_has_ref_ptr_ = &has_ref_;
237 StrictMock<HasRef> has_ref_; member in class:base::__anon2202::BindTest
330 EXPECT_CALL(has_ref_, AddRef()).Times(5);
331 EXPECT_CALL(has_ref_, Release()).Times(5);
332 EXPECT_CALL(has_ref_, VoidMethod0()).Times(2);
333 EXPECT_CALL(has_ref_, VoidConstMethod0()).Times(2);
341 Closure method_cb = Bind(&HasRef::VoidMethod0, &has_ref_);
343 make_scoped_refptr(&has_ref_));
345 &has_ref_);
371 EXPECT_CALL(has_ref_, AddRe
[all...]

Completed in 51 milliseconds