Lines Matching defs:HasElse
936 bool HasElse = Else != nullptr;
939 IfStmtBits.HasElse = HasElse;
947 if (HasElse)
955 if (HasElse)
959 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit)
961 IfStmtBits.HasElse = HasElse;
970 bool HasElse = Else != nullptr;
975 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
981 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
985 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
987 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit);