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