• Home
  • Raw
  • Download

Lines Matching refs:continuation

50     ctx::continuation foo( ctx::continuation && c, int i) {  in foo()
109 ctx::continuation c;
110 my_exception( ctx::continuation && c_, char const* what) : in my_exception()
134 ctx::continuation c1 = ctx::callcc( in test_move()
135 [&i](ctx::continuation && c) { in test_move()
143 ctx::continuation c2; in test_move()
158 ctx::continuation c = ctx::callcc( std::bind( & X::foo, x, std::placeholders::_1, 7) ); in test_bind()
165 ctx::continuation c = ctx::callcc( in test_exception()
166 [&what](ctx::continuation && c) { in test_exception()
181 ctx::continuation c = ctx::callcc([&catched](ctx::continuation && c){ in test_exception()
197 ctx::continuation c = ctx::callcc( in test_fp()
198 [&d]( ctx::continuation && c) { in test_fp()
210 ctx::continuation c = ctx::callcc( in test_stacked()
211 [](ctx::continuation && c) { in test_stacked()
212 ctx::continuation c1 = ctx::callcc( in test_stacked()
213 [](ctx::continuation && c) { in test_stacked()
232 ctx::continuation c = ctx::callcc( in test_prealloc()
234 [&i]( ctx::continuation && c) { in test_prealloc()
245 ctx::continuation c = ctx::callcc([&i](ctx::continuation && c) { in test_ontop()
253 [&i](ctx::continuation && c){ in test_ontop()
261 ctx::continuation c1; in test_ontop()
262 ctx::continuation c = ctx::callcc([&c1](ctx::continuation && c) { in test_ontop()
268 [&c1](ctx::continuation && c){ in test_ontop()
278 ctx::continuation c = ctx::callcc([](ctx::continuation && c){ in test_ontop_exception()
294 [what](ctx::continuation && c){ in test_ontop_exception()
305 ctx::continuation c = ctx::callcc( in test_termination1()
306 [](ctx::continuation && c){ in test_termination1()
316 ctx::continuation c = ctx::callcc( in test_termination1()
317 [](ctx::continuation && c) { in test_termination1()
328 ctx::continuation c = ctx::callcc( in test_termination1()
329 [&i](ctx::continuation && c){ in test_termination1()
349 ctx::continuation c = ctx::callcc( in test_termination2()
350 [](ctx::continuation && c){ in test_termination2()
369 ctx::continuation c = ctx::callcc( in test_sscanf()
370 []( ctx::continuation && c) { in test_sscanf()
397 ctx::continuation c = ctx::callcc( in test_snprintf()
398 []( ctx::continuation && c) { in test_snprintf()
419 ctx::continuation c = ctx::callcc( in test_bug12215()
420 [](ctx::continuation && c) { in test_bug12215()
432 ctx::continuation c = ctx::callcc( in test_goodcatch()
433 [](ctx::continuation && c) { in test_goodcatch()
464 ctx::continuation c = ctx::callcc( in test_badcatch()
465 [](ctx::continuation && c) { in test_badcatch()