Home | History | Annotate | Download | only in AST

Lines Matching defs:ParenExpr

732   /// IgnoreParens - Ignore parentheses.  If this Expr is a ParenExpr, return
733 /// its subexpression. If that subexpression is also a ParenExpr,
738 /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
746 /// any ParenExpr or ImplicitCastExprs, returning their operand.
761 /// Ignore parentheses and lvalue casts. Strip off any ParenExpr and
771 /// ParenExpr or CastExprs, returning their operand.
1617 /// ParenExpr - This represents a parethesized expression, e.g. "(1)". This
1619 class ParenExpr : public Expr {
1623 ParenExpr(SourceLocation l, SourceLocation r, Expr *val)
1632 explicit ParenExpr(EmptyShell Empty)