Home
last modified time | relevance | path

Searched refs:terminate (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Event/
H A DGeneric.t109 qr/terminate must be a positive integer/,
110 "terminate only takes integers"
115 qr/terminate must be a positive integer/,
116 "terminate only takes numbers"
121 qr/terminate must be a positive integer/,
122 "terminate only takes positive integers"
126 is($e->terminate, 0, "set to 0, 0 is valid");
128 is($e->terminate, 1, "set to 1");
130 is($e->terminate, 123, "set to 123");
135 is($e->terminate, undef, "terminate is not defined");
[all …]
H A DPlan.t17 is($plan->terminate, undef, "No terminate for normal plan");
22 is($plan->terminate, 0, "Terminate 0 on skip_all");
32 is($plan->terminate, undef, "No terminate for no_plan");
103 is($facet_data->{control}->{terminate}, undef, "no termination defined");
118 is($facet_data->{control}->{terminate}, undef, "no termination defined");
133 is($facet_data->{control}->{terminate}, 0, "terminate with 0");
149 is($facet_data->{control}->{terminate}, 0, "terminate with 0");
H A DBail.t14 is($bail->terminate, 255, "Bail will cause the test to exit.");
32 terminate => 255,
59 terminate => 255,
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Util/
H A DFacets2Legacy.t57 …is(causes_fail({control => {terminate => 0}}), 0, "defined but 0 termination does not cause failur…
58 … is(causes_fail({control => {terminate => 1}}), 1, "non-zero defined termination causes failure");
103 tests terminate => sub {
104 is(terminate({}), undef, "undef by default");
105 is(terminate({control => {terminate => undef}}), undef, "undef by choice");
106 is(terminate({control => {terminate => 100}}), 100, "got the terminate value");
107 is(terminate({control => {terminate => 0}}), 0, "0 is passed through");
/openbsd/usr.sbin/ldapd/
H A Dimsgev.c41 iev->terminate = 0; in imsgev_init()
69 iev->terminate = 1; in imsgev_close()
86 if (!iev->terminate) in imsgev_add()
88 if (iev->ibuf.w.queued || iev->terminate) in imsgev_add()
148 while (iev->terminate == 0) { in imsgev_dispatch()
159 if (iev->terminate && iev->ibuf.w.queued == 0) { in imsgev_dispatch()
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/
H A DEvent.t72 terminate => undef,
90 terminate => undef,
109 terminate => undef,
133 terminate => undef,
224 terminate => 255,
258 terminate => 255,
288 terminate => 255,
319 terminate => 255,
351 terminate => 0,
516 terminate => undef,
[all …]
/openbsd/gnu/llvm/libcxxabi/src/
H A Dcxa_aux_runtime.cpp22 std::terminate(); in __cxa_bad_cast()
30 std::terminate(); in __cxa_bad_typeid()
39 std::terminate(); in __cxa_throw_bad_array_new_length()
H A Dcxa_noexception.cpp28 std::terminate(); in __cxa_increment_exception_refcount()
34 std::terminate(); in __cxa_decrement_exception_refcount()
43 std::terminate(); in __cxa_rethrow_primary_exception()
H A Dcxa_exception.cpp192 std::terminate(); in __cxa_allocate_exception()
217 std::terminate(); in __cxa_allocate_dependent_exception()
330 std::terminate(); in __cxa_begin_cleanup()
359 std::terminate(); in __cxa_end_cleanup_impl()
477 std::terminate(); in __cxa_begin_catch()
608 std::terminate(); // throw; called outside of a exception handler in __cxa_rethrow()
639 std::terminate(); in __cxa_rethrow()
/openbsd/gnu/lib/libstdc++/libstdc++/libsupc++/
H A Deh_terminate.cc41 std::unexpected_handler __cxxabiv1::__unexpected_handler = std::terminate;
55 std::terminate () in terminate() function in std
64 std::terminate (); in __unexpected()
H A Dexception73 /// If you write a replacement %terminate handler, it must be of this type.
82 void terminate() __attribute__ ((__noreturn__));
93 * due to the throw; or after entering @c terminate() for any reason
94 * other than an explicit call to @c terminate(). [Note: This includes
98 * result in a call of @c terminate() (15.5.1)."
H A Deh_catch.cc53 std::terminate (); in __cxa_begin_catch()
122 std::terminate (); in __cxa_end_catch()
H A Deh_throw.cc80 std::terminate (); in __cxa_throw()
111 std::terminate (); in __cxa_rethrow()
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/
H A DEvent.pm80 sub terminate { () } subroutine
173 my $terminate = $self->terminate;
176 terminate => $terminate,
199 $out->{control}->{terminate} ||= 0 if $out->{plan}->{skip};
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/behavior/
H A DFormatter.t24 sub terminate {
53 ok(!@{$f->t}, 'terminate method was not called on formatter');
66 is(scalar @{$f->t}, 1, 'terminate method was called because of bail event');
80 is(scalar @{$f->t}, 1, 'terminate method was called because of plan skip_all event');
H A DSubtest_buffer_formatter.t12 sub terminate { }
18 sub terminate { }
23 sub terminate { }
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/EventFacet/
H A DControl.t9 my $one = $CLASS->new(details => 'foo', global => 0, terminate => undef, halt => 0, has_callback =>…
13 is($one->terminate, undef, "Got 'terminate' value");
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Event/
H A DPlan.pm49 sub terminate { subroutine
76 $out->{control}->{terminate} = $self->{+DIRECTIVE} eq 'SKIP' ? 0 : undef
77 unless defined $out->{control}->{terminate};
H A DBail.pm12 sub terminate { 255 }; subroutine
36 terminate => 255,
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Hub/
H A DSubtest.t88 $one->terminate(100, $skip);
91 is($ran, 1, "did not get past the terminate");
99 is($ran, 1, "did not get past the terminate");
107 $one->terminate(100, $skip);
/openbsd/gnu/llvm/libcxx/src/support/runtime/
H A Dexception_pointer_cxxabi.ipp51 terminate();
69 // if p.__ptr_ is NULL, above returns so we terminate
70 terminate();
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Util/
H A DFacets2Legacy.pm49 return 1 if $control->{terminate};
109 sub terminate { subroutine
112 return $facet_data->{control}->{terminate};
/openbsd/gnu/gcc/libstdc++-v3/libsupc++/
H A Deh_terminate.cc51 std::terminate () in terminate() function in std
60 std::terminate (); in __unexpected()
H A Dexception82 /// If you write a replacement %terminate handler, it must be of this type.
93 void terminate() __attribute__ ((__noreturn__));
105 * due to the throw; or after entering @c terminate() for any reason
106 * other than an explicit call to @c terminate(). [Note: This includes
110 * result in a call of @c terminate() (15.5.1)."
H A Deh_throw.cc76 std::terminate (); in __cxa_throw()
109 std::terminate (); in __cxa_rethrow()

12345678910>>...15