Home | History | Annotate | Download | only in AST

Lines Matching defs:ParenExpr

742   /// IgnoreParens - Ignore parentheses.  If this Expr is a ParenExpr, return
743 /// its subexpression. If that subexpression is also a ParenExpr,
748 /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
756 /// any ParenExpr or ImplicitCastExprs, returning their operand.
771 /// Ignore parentheses and lvalue casts. Strip off any ParenExpr and
781 /// ParenExpr or CastExprs, returning their operand.
1663 /// ParenExpr - This represents a parethesized expression, e.g. "(1)". This
1665 class ParenExpr : public Expr {
1669 ParenExpr(SourceLocation l, SourceLocation r, Expr *val)
1678 explicit ParenExpr(EmptyShell Empty)