Lines Matching defs:HasElse
928 bool HasElse = Else != nullptr;
931 IfStmtBits.HasElse = HasElse;
939 if (HasElse)
947 if (HasElse)
951 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit)
953 IfStmtBits.HasElse = HasElse;
962 bool HasElse = Else != nullptr;
967 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
973 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
977 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
979 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit);