11 references to SequentialLayout
ILAssembler (1)
GrammarVisitor.cs (1)
1033return new((new(TypeAttributes.SequentialLayout, TypeAttributes.LayoutMask), null, false));
ILCompiler.MetadataTransform (1)
ILCompiler\Metadata\Transform.Type.cs (1)
542result |= TypeAttributes.SequentialLayout;
ILCompiler.TypeSystem (2)
parent\parent\Common\TypeSystem\Ecma\EcmaType.cs (2)
557if ((Attributes & TypeAttributes.LayoutMask) == TypeAttributes.SequentialLayout) 620return (_typeDefinition.Attributes & TypeAttributes.LayoutMask) == TypeAttributes.SequentialLayout;
Microsoft.CodeAnalysis (2)
MetadataReader\PEModule.cs (1)
956case TypeAttributes.SequentialLayout:
PEWriter\MetadataWriter.cs (1)
1471result |= TypeAttributes.SequentialLayout;
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\ComInterop\VariantArray.cs (1)
102TypeAttributes attrs = TypeAttributes.NotPublic | TypeAttributes.SequentialLayout;
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
115public bool IsLayoutSequential => (GetAttributeFlagsImpl() & TypeAttributes.LayoutMask) == TypeAttributes.SequentialLayout;
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
111case TypeAttributes.SequentialLayout: layoutKind = LayoutKind.Sequential; break;
System.Reflection.Emit (1)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
505LayoutKind.Sequential => TypeAttributes.SequentialLayout,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoDefinitionType.cs (1)
163TypeAttributes.SequentialLayout => LayoutKind.Sequential,