Lines Matching refs:SlowConstructor
45 class SlowConstructor { class
47 SlowConstructor() : some_int_(0) { in SlowConstructor() function in __anon20914aa10111::SlowConstructor
53 SlowConstructor(const SlowConstructor&) = delete;
54 SlowConstructor& operator=(const SlowConstructor&) = delete;
63 int SlowConstructor::constructed = 0;
68 base::LazyInstance<SlowConstructor>::DestructorAtExit* lazy) in SlowDelegate()
79 raw_ptr<base::LazyInstance<SlowConstructor>::DestructorAtExit> lazy_;
110 base::LazyInstance<SlowConstructor>::DestructorAtExit lazy_slow =
118 EXPECT_EQ(0, SlowConstructor::constructed); in TEST()
122 EXPECT_EQ(0, SlowConstructor::constructed); in TEST()
126 EXPECT_EQ(1, SlowConstructor::constructed); in TEST()