Home | History | Annotate | Download | only in AST

Lines Matching defs:ParenExpr

739   /// IgnoreParens - Ignore parentheses.  If this Expr is a ParenExpr, return
740 /// its subexpression. If that subexpression is also a ParenExpr,
745 /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
753 /// any ParenExpr or ImplicitCastExprs, returning their operand.
768 /// Ignore parentheses and lvalue casts. Strip off any ParenExpr and
778 /// ParenExpr or CastExprs, returning their operand.
1660 /// ParenExpr - This represents a parethesized expression, e.g. "(1)". This
1662 class ParenExpr : public Expr {
1666 ParenExpr(SourceLocation l, SourceLocation r, Expr *val)
1675 explicit ParenExpr(EmptyShell Empty)