Lines Matching refs:HasElse
811 bool HasElse = Else != nullptr; in IfStmt() local
814 IfStmtBits.HasElse = HasElse; in IfStmt()
822 if (HasElse) in IfStmt()
830 if (HasElse) in IfStmt()
834 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) in IfStmt() argument
836 IfStmtBits.HasElse = HasElse; in IfStmt()
844 bool HasElse = Else != nullptr; in Create() local
849 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in Create()
855 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, in CreateEmpty() argument
859 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in CreateEmpty()
861 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit); in CreateEmpty()