Home | History | Annotate | Download | only in AST

Lines Matching defs:isConstexpr

101     unsigned IsConstexpr : 1;
914 bool IsConstexpr, Stmt *init, VarDecl *var, Expr *cond,
957 bool isConstexpr() const { return IfStmtBits.IsConstexpr; }
958 void setConstexpr(bool C) { IfStmtBits.IsConstexpr = C; }