Lines Matching refs:HasElse
913 bool HasElse = Else != nullptr; in IfStmt() local
916 IfStmtBits.HasElse = HasElse; in IfStmt()
924 if (HasElse) in IfStmt()
932 if (HasElse) in IfStmt()
936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) in IfStmt() argument
938 IfStmtBits.HasElse = HasElse; in IfStmt()
947 bool HasElse = Else != nullptr; in Create() local
952 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in Create()
958 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, in CreateEmpty() argument
962 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in CreateEmpty()
964 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit); in CreateEmpty()