Home | History | Annotate | Download | only in Sema

Lines Matching refs:BestType

10209   QualType BestType;
10230 BestType = Enum->getIntegerType();
10231 if (BestType->isPromotableIntegerType())
10232 BestPromotionType = Context.getPromotedIntegerType(BestType);
10234 BestPromotionType = BestType;
10235 // We don't need to set BestWidth, because BestType is going to be the type
10245 BestType = Context.SignedCharTy;
10249 BestType = Context.ShortTy;
10252 BestType = Context.IntTy;
10258 BestType = Context.LongTy;
10264 BestType = Context.LongLongTy;
10267 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
10273 BestType = Context.UnsignedCharTy;
10277 BestType = Context.UnsignedShortTy;
10281 BestType = Context.UnsignedIntTy;
10288 BestType = Context.UnsignedLongTy;
10296 BestType = Context.UnsignedLongLongTy;
10329 } else if (ECD->getType() == BestType) {
10338 NewTy = BestType;
10340 NewSign = BestType->isSignedIntegerOrEnumerationType();
10365 Enum->completeDefinition(BestType, BestPromotionType,