Searched refs:OPf_PARENS (Results 1 – 6 of 6) sorted by relevance
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | perly.y | 214 { $$ = newLOOPOP(OPf_PARENS, 1, scalar($3), $1); } 216 { $$ = newLOOPOP(OPf_PARENS, 1, $3, $1);} 226 { ($2)->op_flags |= OPf_PARENS; $$ = scope($2); }
|
| D | op.c | 1020 o->op_flags &= ~OPf_PARENS; in Perl_scalarseq() 1022 o->op_flags |= OPf_PARENS; in Perl_scalarseq() 1075 if (o->op_flags & OPf_PARENS) in Perl_mod() 1218 if (type == OP_REFGEN && o->op_flags & OPf_PARENS) { in Perl_mod() 1257 if (type == OP_REFGEN && o->op_flags & OPf_PARENS) in Perl_mod() 1772 if (o->op_flags & OPf_PARENS) in Perl_my_attrs() 1805 o->op_flags |= OPf_PARENS; in Perl_sawparens() 1873 if (o->op_flags & OPf_PARENS || PERLDB_NOOPT || PL_tainting) { in Perl_scope() 2004 if (o->op_flags & OPf_PARENS) in Perl_localize() 2169 o->op_flags |= OPf_PARENS; /* and flatten \(1..2,3) */ in Perl_gen_constant_list() [all …]
|
| D | perly.c | 1694 { yyval.opval = newLOOPOP(OPf_PARENS, 1, scalar(yyvsp[0].opval), yyvsp[-2].opval); } in yyparse() 1698 { yyval.opval = newLOOPOP(OPf_PARENS, 1, yyvsp[0].opval, yyvsp[-2].opval);} in yyparse() 1711 { (yyvsp[0].opval)->op_flags |= OPf_PARENS; yyval.opval = scope(yyvsp[0].opval); } in yyparse()
|
| D | op.h | 78 #define OPf_PARENS 8 /* This operator was parenthesized. */ macro
|
| D | dump.c | 460 if (o->op_flags & OPf_PARENS) in Perl_do_op_dump()
|
| /mirbsd/src/gnu/usr.bin/perl/vms/ |
| D | perly_c.vms | 1698 { yyval.opval = newLOOPOP(OPf_PARENS, 1, scalar(yyvsp[0].opval), yyvsp[-2].opval); } 1702 { yyval.opval = newLOOPOP(OPf_PARENS, 1, yyvsp[0].opval, yyvsp[-2].opval);} 1715 { (yyvsp[0].opval)->op_flags |= OPf_PARENS; yyval.opval = scope(yyvsp[0].opval); }
|