10 references to AutoLayout
ILAssembler (1)
GrammarVisitor.cs (1)
1031
return new((new(TypeAttributes.
AutoLayout
, TypeAttributes.LayoutMask), null, false));
ILCompiler.TypeSystem (1)
parent\parent\Common\TypeSystem\Ecma\EcmaType.cs (1)
636
return (_typeDefinition.Attributes & TypeAttributes.LayoutMask) == TypeAttributes.
AutoLayout
;
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
964
case TypeAttributes.
AutoLayout
:
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
113
public bool IsAutoLayout => (GetAttributeFlagsImpl() & TypeAttributes.LayoutMask) == TypeAttributes.
AutoLayout
;
System\Reflection\Runtime\TypeInfos\RuntimeArrayTypeInfo.cs (1)
42
TypeAttributes.
AutoLayout
| TypeAttributes.AnsiClass | TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.Sealed | TypeAttributes.Serializable;
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
110
case TypeAttributes.
AutoLayout
: layoutKind = LayoutKind.Auto; break;
System.Reflection.Emit (2)
System\Reflection\Emit\TypeBuilderImpl.cs (2)
503
LayoutKind.Auto => TypeAttributes.
AutoLayout
,
507
_ => TypeAttributes.
AutoLayout
,
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\Types\RoArrayType.cs (1)
70
protected sealed override TypeAttributes ComputeAttributeFlags() => TypeAttributes.
AutoLayout
| TypeAttributes.AnsiClass | TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.Sealed | TypeAttributes.Serializable;
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
162
TypeAttributes.
AutoLayout
=> LayoutKind.Auto,