Lines Matching defs:HasInit
938 bool HasInit = Init != nullptr;
941 IfStmtBits.HasInit = HasInit;
951 if (HasInit)
959 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit)
963 IfStmtBits.HasInit = HasInit;
972 bool HasInit = Init != nullptr;
975 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
982 bool HasInit) {
985 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
987 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit);
1066 bool HasInit = Init != nullptr;
1068 SwitchStmtBits.HasInit = HasInit;
1074 if (HasInit)
1082 SwitchStmt::SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar)
1084 SwitchStmtBits.HasInit = HasInit;
1092 bool HasInit = Init != nullptr;
1095 totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasInit + HasVar),
1100 SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit,
1103 totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasInit + HasVar),
1105 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);