Searched refs:SvIsBOOL (Results 1 – 8 of 8) sorted by relevance
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/ext/XS-APItest/t/ |
H A D | boolean.t | 11 ok(SvIsBOOL(!!0), 'false is boolean'); 12 ok(SvIsBOOL(!!1), 'true is boolean'); 14 ok(!SvIsBOOL(0), '0 is not boolean'); 15 ok(!SvIsBOOL(1), '1 is not boolean'); 16 ok(!SvIsBOOL(""), '"" is not boolean'); 24 ok(SvIsBOOL($falsevar), 'false var is boolean'); 25 ok(SvIsBOOL($truevar), 'true var is boolean'); 30 ok(!SvIsBOOL($str), 'stringified true is not boolean'); 31 ok(!SvIsBOOL($num), 'numified true is not boolean'); 40 ok(SvIsBOOL($hash{false}), 'false HELEM is boolean'); [all …]
|
H A D | boolean-thr.t | 16 ok(threads->create( sub { SvIsBOOL($_[0]) }, !!0 )->join, 19 ok(SvIsBOOL(threads->create( sub { return !!0 } )->join), 24 ok(threads->create( sub { SvIsBOOL($var) } )->join, 31 ok(SvIsBOOL($sharedvar), 34 ok(threads->create( sub { SvIsBOOL($sharedvar) } )->join,
|
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/cpan/Scalar-List-Utils/ |
H A D | ListUtil.xs | 1673 #ifdef SvIsBOOL 1675 ST(0) = boolSV(SvIsBOOL(sv)); 2117 #if !defined(SvWEAKREF) || !defined(SvVOK) || !defined(SvIsBOOL) 2135 #ifndef SvIsBOOL
|
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/pod/ |
H A D | perl5354delta.pod | 297 SvIsBOOL
|
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/ |
H A D | sv.h | 1065 #define SvIsBOOL(sv) Perl_sv_isbool(aTHX_ sv) macro
|
H A D | dump.c | 1931 if (SvIsBOOL(sv)) in Perl_do_sv_dump()
|
H A D | MANIFEST | 4519 ext/XS-APItest/t/boolean.t test SvIsBOOL 4520 ext/XS-APItest/t/boolean-thr.t test SvIsBOOL on threads
|
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/ext/XS-APItest/ |
H A D | APItest.xs | 4308 SvIsBOOL(SV *sv) 4310 RETVAL = SvIsBOOL(sv);
|