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