Home
last modified time | relevance | path

Searched refs:OPpARG_IF_FALSE (Results 1 – 6 of 6) sorted by relevance

/openbsd/gnu/usr.bin/perl/lib/B/
H A DOp_private.pm621 OPpARG_IF_FALSE => 64,
745 OPpARG_IF_FALSE => 'IF_FALSE',
859 OPpARG_IF_FALSE => [qw(argdefelem)],
917 $ops_using{OPpARG_IF_UNDEF} = $ops_using{OPpARG_IF_FALSE};
H A DDeparse.pm1269 $assign = "||=" if $kid->private & OPpARG_IF_FALSE;
/openbsd/gnu/usr.bin/perl/
H A Dopcode.h2372 #define OPpARG_IF_FALSE 0x40 macro
3297 /* ARGDEFELEM */ (OPpARG1_MASK|OPpARG_IF_FALSE|OPpARG_IF_UNDEF),
H A Dperly.y867 flags |= OPpARG_IF_FALSE << 8;
H A Dperly.act993 flags |= OPpARG_IF_FALSE << 8;
H A Dpp.c7756 if ((PL_op->op_private & OPpARG_IF_FALSE) && !SvTRUE(val)) in PP()