Lines Matching refs:right

85 		tmp = expr->right;  in handle_zero_comparisons()
86 } else if (expr_is_zero(expr->right)) { in handle_zero_comparisons()
89 __split_expr(expr->right); in handle_zero_comparisons()
200 split_conditions(expr->right); in handle_logical()
360 split_conditions(expr->right); in handle_comma()
424 expr_set_parent_expr(expr->right, expr); in split_conditions()
432 expr_set_parent_expr(expr->right, expr); in split_conditions()
438 expr_set_parent_expr(expr->right, expr); in split_conditions()
461 expr_set_parent_expr(expr->right, expr); in split_conditions()
477 if (expr->right->type != EXPR_POSTOP) in split_conditions()
478 __split_expr(expr->right); in split_conditions()
486 if (expr->right->type == EXPR_POSTOP) in split_conditions()
487 __split_expr(expr->right); in split_conditions()
555 struct expression *right; in __handle_condition_assigns() local
561 right = strip_expr(expr->right); in __handle_condition_assigns()
562 if (!is_condition(expr->right)) in __handle_condition_assigns()
571 push_expression(&big_expression_stack, right); in __handle_condition_assigns()
572 split_conditions(right); in __handle_condition_assigns()
578 __pass_to_client(right, WHOLE_CONDITION_HOOK); in __handle_condition_assigns()
615 struct expression *right; in is_select_assign() local
619 right = strip_expr(expr->right); in is_select_assign()
620 if (right->type == EXPR_CONDITIONAL) in is_select_assign()
622 if (right->type == EXPR_SELECT) in is_select_assign()
629 struct expression *right; in __handle_select_assigns() local
638 right = strip_expr(expr->right); in __handle_select_assigns()
639 __pass_to_client(right, SELECT_HOOK); in __handle_select_assigns()
641 is_true = implied_condition_true(right->conditional); in __handle_select_assigns()
642 is_false = implied_condition_false(right->conditional); in __handle_select_assigns()
646 __split_whole_condition(right->conditional); in __handle_select_assigns()
651 if (right->cond_true) in __handle_select_assigns()
652 fake_expr = assign_expression(expr->left, expr->op, right->cond_true); in __handle_select_assigns()
654 fake_expr = assign_expression(expr->left, expr->op, right->conditional); in __handle_select_assigns()
663 fake_expr = assign_expression(expr->left, expr->op, right->cond_false); in __handle_select_assigns()
706 struct expression *right; in __handle_expr_statement_assigns() local
709 right = expr->right; in __handle_expr_statement_assigns()
710 if (right->type == EXPR_PREOP && right->op == '(') in __handle_expr_statement_assigns()
711 right = right->unop; in __handle_expr_statement_assigns()
712 if (right->type != EXPR_STATEMENT) in __handle_expr_statement_assigns()
716 stmt = right->statement; in __handle_expr_statement_assigns()