Lines Matching refs:A_Expr

94 static Node *transformAExprOp(ParseState *pstate, A_Expr *a);
95 static Node *transformAExprOpAny(ParseState *pstate, A_Expr *a);
96 static Node *transformAExprOpAll(ParseState *pstate, A_Expr *a);
97 static Node *transformAExprDistinct(ParseState *pstate, A_Expr *a);
98 static Node *transformAExprNullIf(ParseState *pstate, A_Expr *a);
99 static Node *transformAExprOf(ParseState *pstate, A_Expr *a);
100 static Node *transformAExprIn(ParseState *pstate, A_Expr *a);
101 static Node *transformAExprBetween(ParseState *pstate, A_Expr *a);
131 A_Expr *distincta, Node *arg);
212 A_Expr *a = (A_Expr *) expr; in transformExprRecurse()
848 transformAExprOp(ParseState *pstate, A_Expr *a) in transformAExprOp()
866 while (lexpr && IsA(lexpr, A_Expr) && in transformAExprOp()
867 ((A_Expr *) lexpr)->kind == AEXPR_PAREN) in transformAExprOp()
868 lexpr = ((A_Expr *) lexpr)->lexpr; in transformAExprOp()
869 while (rexpr && IsA(rexpr, A_Expr) && in transformAExprOp()
870 ((A_Expr *) rexpr)->kind == AEXPR_PAREN) in transformAExprOp()
871 rexpr = ((A_Expr *) rexpr)->lexpr; in transformAExprOp()
949 transformAExprOpAny(ParseState *pstate, A_Expr *a) in transformAExprOpAny()
972 transformAExprOpAll(ParseState *pstate, A_Expr *a) in transformAExprOpAll()
995 transformAExprDistinct(ParseState *pstate, A_Expr *a) in transformAExprDistinct()
1051 transformAExprNullIf(ParseState *pstate, A_Expr *a) in transformAExprNullIf()
1097 transformAExprOf(ParseState *pstate, A_Expr *a) in transformAExprOf()
1138 transformAExprIn(ParseState *pstate, A_Expr *a) in transformAExprIn()
1298 transformAExprBetween(ParseState *pstate, A_Expr *a) in transformAExprBetween()
2040 while (e && IsA(e, A_Expr) && in transformArrayExpr()
2041 ((A_Expr *) e)->kind == AEXPR_PAREN) in transformArrayExpr()
2042 e = ((A_Expr *) e)->lexpr; in transformArrayExpr()
2680 while (arg && IsA(arg, A_Expr) && in transformTypeCast()
2681 ((A_Expr *) arg)->kind == AEXPR_PAREN) in transformTypeCast()
2682 arg = ((A_Expr *) arg)->lexpr; in transformTypeCast()
3074 make_nulltest_from_distinct(ParseState *pstate, A_Expr *distincta, Node *arg) in make_nulltest_from_distinct()
3108 if (IsA(node, A_Expr)) in operator_precedence_group()
3110 A_Expr *aexpr = (A_Expr *) node; in operator_precedence_group()