Lines Matching refs:HasElse
925 bool HasElse = Else != nullptr; in IfStmt() local
928 IfStmtBits.HasElse = HasElse; in IfStmt()
936 if (HasElse) in IfStmt()
944 if (HasElse) in IfStmt()
948 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) in IfStmt() argument
950 IfStmtBits.HasElse = HasElse; in IfStmt()
959 bool HasElse = Else != nullptr; in Create() local
964 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in Create()
970 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, in CreateEmpty() argument
974 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in CreateEmpty()
976 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit); in CreateEmpty()