8 references to AllReferenceTypeKinds
Microsoft.CodeAnalysis.CSharp (8)
Symbols\Source\SourceNamedTypeSymbol.cs (6)
674
Debug.Assert((constraint.Constraints & TypeParameterConstraintKind.
AllReferenceTypeKinds
) == (mergedKind & TypeParameterConstraintKind.
AllReferenceTypeKinds
) ||
675
(constraint.Constraints & TypeParameterConstraintKind.
AllReferenceTypeKinds
) == TypeParameterConstraintKind.ReferenceType);
704
TypeParameterConstraintKind clause1Constraints = mergedKind & TypeParameterConstraintKind.
AllReferenceTypeKinds
;
705
TypeParameterConstraintKind clause2Constraints = clause.Constraints & TypeParameterConstraintKind.
AllReferenceTypeKinds
;
711
mergedKind = (mergedKind & (~TypeParameterConstraintKind.
AllReferenceTypeKinds
)) | clause2Constraints;
Symbols\Source\SourceTypeParameterSymbol.cs (1)
447
switch (constraints & TypeParameterConstraintKind.
AllReferenceTypeKinds
)
Symbols\Source\TypeParameterConstraintClause.cs (1)
107
switch (constraints & TypeParameterConstraintKind.
AllReferenceTypeKinds
)