Home
last modified time | relevance | path

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

/openbsd/gnu/usr.bin/perl/lib/B/
H A DOp_private.pm696 OPpMULTICONCAT_APPEND => 64,
814 OPpMULTICONCAT_APPEND => 'APPEND',
894 OPpMULTICONCAT_APPEND => [qw(multiconcat)],
941 $ops_using{OPpMULTICONCAT_FAKE} = $ops_using{OPpMULTICONCAT_APPEND};
942 $ops_using{OPpMULTICONCAT_STRINGIFY} = $ops_using{OPpMULTICONCAT_APPEND};
H A DDeparse.pm4653 $append = ($op->private & OPpMULTICONCAT_APPEND);
6241 if ($op->private & OPpMULTICONCAT_APPEND) {
/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/parts/base/
H A D502700636 OPpMULTICONCAT_APPEND # Z added by devel/scanprov
/openbsd/gnu/usr.bin/perl/
H A Dopcode.h2385 #define OPpMULTICONCAT_APPEND 0x40 macro
3173 …G1_MASK|OPpMULTICONCAT_STRINGIFY|OPpTARGET_MY|OPpMULTICONCAT_FAKE|OPpMULTICONCAT_APPEND|OPpLVAL_IN…
H A Dpeep.c338 private_flags |= OPpMULTICONCAT_APPEND; in S_maybe_multiconcat()
599 if (nargs + nconst + cBOOL(private_flags & OPpMULTICONCAT_APPEND) < 2) in S_maybe_multiconcat()
644 if (nargs + nconst + cBOOL(private_flags & OPpMULTICONCAT_APPEND) < 3) in S_maybe_multiconcat()
H A Dpp_hot.c718 is_append = cBOOL(PL_op->op_private & OPpMULTICONCAT_APPEND); in PP()