8 references to Attributes
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Parameter.cs (1)
36
result.Flags = genParamDef.
Attributes
;
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\TypeGenericInfoMapNode.cs (2)
59
if ((genericParameter.
Attributes
& GenericParameterAttributes.VarianceMask) != GenericParameterAttributes.None)
62
if ((genericParameter.
Attributes
& (GenericParameterAttributes.SpecialConstraintMask | (GenericParameterAttributes)GenericConstraints.AllowByRefLike)) != default(GenericParameterAttributes) ||
ILCompiler.TypeSystem (2)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\EcmaGenericParameter.cs (2)
107
return (GenericVariance)(parameter.
Attributes
& GenericParameterAttributes.VarianceMask);
118
return (GenericConstraints)(parameter.
Attributes
& mask);
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
3326
flags = row.
Attributes
;
Microsoft.Diagnostics.DataContractReader.Legacy (1)
MetaDataImportImpl.cs (1)
813
*pdwParamFlags = (uint)genericParam.
Attributes
;
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\Ecma\EcmaGenericParameterType.cs (1)
31
public sealed override GenericParameterAttributes GenericParameterAttributes => GenericParameter.
Attributes
;