Lines Matching refs:ran
69 bool ran = false;
71 stdexec::then([&ran]() { ran = true; }));
77 EXPECT_TRUE(ran);
113 bool ran = false;
119 ctx().spawn(m->next() | stdexec::then([&ran](...) { ran = true; }));
126 EXPECT_FALSE(ran);
139 static auto fn(decltype(m->next()) snd, bool& ran)
143 ran = true;
148 bool ran = false;
149 ctx().spawn(_::fn(m->next(), ran));
154 EXPECT_FALSE(ran);