Lines Matching defs:HasInit
930 bool HasInit = Init != nullptr;
933 IfStmtBits.HasInit = HasInit;
943 if (HasInit)
951 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit)
955 IfStmtBits.HasInit = HasInit;
964 bool HasInit = Init != nullptr;
967 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
974 bool HasInit) {
977 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
979 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit);
1058 bool HasInit = Init != nullptr;
1060 SwitchStmtBits.HasInit = HasInit;
1066 if (HasInit)
1074 SwitchStmt::SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar)
1076 SwitchStmtBits.HasInit = HasInit;
1084 bool HasInit = Init != nullptr;
1087 totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasInit + HasVar),
1092 SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit,
1095 totalSizeToAlloc<Stmt *>(NumMandatoryStmtPtr + HasInit + HasVar),
1097 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);