9 references to Pinned
Microsoft.CodeAnalysis (3)
CodeGen\LocalDefinition.cs (1)
125=> (_constraints & LocalSlotConstraints.Pinned) != 0;
MetadataReader\MetadataDecoder.cs (2)
102public bool IsPinned => (Constraints & LocalSlotConstraints.Pinned) != 0; 956constraints |= LocalSlotConstraints.Pinned;
Microsoft.CodeAnalysis.CSharp (2)
CodeGen\EmitStatement.cs (2)
1769constraints = LocalSlotConstraints.ByRef | LocalSlotConstraints.Pinned; 1781constraints = (local.IsPinned ? LocalSlotConstraints.Pinned : LocalSlotConstraints.None) |
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (2)
EEAssemblyBuilder.cs (2)
103constraints = LocalSlotConstraints.ByRef | LocalSlotConstraints.Pinned; 108constraints = (local.IsPinned ? LocalSlotConstraints.Pinned : LocalSlotConstraints.None) |
Microsoft.CodeAnalysis.VisualBasic (1)
CodeGen\EmitStatement.vb (1)
1282If(local.IsPinned, LocalSlotConstraints.Pinned, LocalSlotConstraints.None)
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler (1)
EEAssemblyBuilder.vb (1)
109Dim constraints = If(local.IsPinned, LocalSlotConstraints.Pinned, LocalSlotConstraints.None) Or