Home | History | Annotate | Download | only in Sema

Lines Matching refs:Enum

631   enum {
3994 // For enum types, use the known bit width of the enumerators.
3996 EnumDecl *Enum = ET->getDecl();
3997 if (!Enum->isCompleteDefinition())
4000 unsigned NumPositive = Enum->getNumPositiveBits();
4001 unsigned NumNegative = Enum->getNumNegativeBits();
4359 // Suppress cases where we are comparing against an enum constant.
4499 // If this is a comparison to an enum constant, include that
5034 EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
5035 SourceType = S.Context.getTypeDeclType(Enum);
5281 enum UsageKind {
6241 // This enum needs to match with the 'select' in
6489 // C++11 [dcl.enum] p8:
6625 if (TC1 == Type::Enum) {