Lines Matching defs:cstop
8808 OP *cstop = NULL;
8831 if ((cstop = search_const(first))) {
8832 if (cstop->op_private & OPpCONST_STRICT)
8833 no_bareword_allowed(cstop);
8834 else if ((cstop->op_private & OPpCONST_BARE))
8836 if ((type == OP_AND && SvTRUE(cSVOPx(cstop)->op_sv)) ||
8837 (type == OP_OR && !SvTRUE(cSVOPx(cstop)->op_sv)) ||
8838 (type == OP_DOR && !SvOK(cSVOPx(cstop)->op_sv))) {
8878 if (cstop->op_type == OP_CONST)
8879 cstop->op_private |= OPpCONST_SHORTCIRCUIT;
8986 OP *cstop;
9003 if ((cstop = search_const(first))) {
9005 const bool left = SvTRUE(cSVOPx(cstop)->op_sv);
9008 if (cstop->op_private & OPpCONST_BARE &&
9009 cstop->op_private & OPpCONST_STRICT) {
9010 no_bareword_allowed(cstop);