Lines Matching refs:oright
6719 OP *oleft, *oright;
6725 oright = cUNOPo->op_first;
6726 if (!oright || oright->op_type != OP_PUSHMARK)
6728 oright = cUNOPx(oright)->op_sibling;
6729 if (!oright)
6731 if (oright->op_type == OP_NULL) { /* skip sort block/sub */
6732 oright = cUNOPx(oright)->op_sibling;
6735 if (!oright ||
6736 (oright->op_type != OP_RV2AV && oright->op_type != OP_PADAV)
6737 || oright->op_next != o
6738 || (oright->op_private & OPpLVAL_INTRO)
6780 if (oright->op_type != OP_RV2AV
6781 || !cUNOPx(oright)->op_first
6782 || cUNOPx(oright)->op_first->op_type != OP_GV
6784 cGVOPx_gv(cUNOPx(oright)->op_first)
6788 else if (oright->op_type != OP_PADAV
6789 || oright->op_targ != oleft->op_targ
6794 oright->op_flags = oleft->op_flags;