5 references to ExtendedLayout
ILAssembler (1)
GrammarVisitor.cs (1)
1035
return new((new(TypeAttributes.
ExtendedLayout
, TypeAttributes.LayoutMask), null, false));
Microsoft.CodeAnalysis (2)
MetadataReader\PEModule.cs (1)
968
if ((def.Attributes & TypeAttributes.LayoutMask) == TypeAttributes.
ExtendedLayout
)
PEWriter\MetadataWriter.cs (1)
1481
result |= TypeAttributes.
ExtendedLayout
;
System.Private.CoreLib (1)
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
112
case TypeAttributes.
ExtendedLayout
: layoutKind = LayoutKind.Extended; break;
System.Reflection.Emit (1)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
506
LayoutKind.Extended => TypeAttributes.
ExtendedLayout
,