5 implementations of UnmanagedCallingConventionTypes
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationAbstractMethodSymbol.cs (1)
109public ImmutableArray<INamedTypeSymbol> UnmanagedCallingConventionTypes => ImmutableArray<INamedTypeSymbol>.Empty;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\MethodSymbol.cs (1)
272ImmutableArray<INamedTypeSymbol> IMethodSymbol.UnmanagedCallingConventionTypes => _underlying.UnmanagedCallingConventionTypes.SelectAsArray(t => t.GetPublicSymbol());
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (1)
138public ImmutableArray<INamedTypeSymbol> UnmanagedCallingConventionTypes => _symbol.UnmanagedCallingConventionTypes;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\MethodSymbol.vb (1)
1049Private ReadOnly Property IMethodSymbol_UnmanagedCallingConventionTypes As ImmutableArray(Of INamedTypeSymbol) Implements IMethodSymbol.UnmanagedCallingConventionTypes
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationAbstractMethodSymbol.cs (1)
109public ImmutableArray<INamedTypeSymbol> UnmanagedCallingConventionTypes => ImmutableArray<INamedTypeSymbol>.Empty;
19 references to UnmanagedCallingConventionTypes
Microsoft.CodeAnalysis.CodeStyle (3)
ITypeSymbolExtensions.MinimalAccessibilityVisitor.cs (1)
40foreach (var callingConventionType in symbol.Signature.UnmanagedCallingConventionTypes)
SymbolKey.FunctionPointerTypeSymbolKey.cs (2)
25visitor.WriteSymbolKeyArray(symbol.Signature.UnmanagedCallingConventionTypes); 44static (contextualSymbol, i) => SafeGet(contextualSymbol.Signature.UnmanagedCallingConventionTypes, i),
Microsoft.CodeAnalysis.CSharp (1)
SymbolDisplay\SymbolDisplayVisitor.Members.cs (1)
594var conventionTypes = symbol.UnmanagedCallingConventionTypes;
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
ITypeSymbolExtensions.TypeSyntaxGeneratorVisitor.cs (2)
143symbol.Signature.UnmanagedCallingConventionTypes.IsEmpty 144? null : symbol.Signature.UnmanagedCallingConventionTypes.Select(type => GetConventionForString(type.Name["CallConv".Length..])),
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (6)
Symbols\TypeTests.cs (6)
2347Assert.Empty(m1.UnmanagedCallingConventionTypes); 2352Assert.Empty(m2.UnmanagedCallingConventionTypes); 2357Assert.Empty(m3.UnmanagedCallingConventionTypes); 2395Assert.Empty(m1.UnmanagedCallingConventionTypes); 2400Assert.Empty(m2.UnmanagedCallingConventionTypes); 2405Assert.Empty(m3.UnmanagedCallingConventionTypes);
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
ITypeSymbolExtensions.TypeSyntaxGeneratorVisitor.cs (2)
143symbol.Signature.UnmanagedCallingConventionTypes.IsEmpty 144? null : symbol.Signature.UnmanagedCallingConventionTypes.Select(type => GetConventionForString(type.Name["CallConv".Length..])),
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (1)
138public ImmutableArray<INamedTypeSymbol> UnmanagedCallingConventionTypes => _symbol.UnmanagedCallingConventionTypes;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\MethodSymbol.vb (1)
1049Private ReadOnly Property IMethodSymbol_UnmanagedCallingConventionTypes As ImmutableArray(Of INamedTypeSymbol) Implements IMethodSymbol.UnmanagedCallingConventionTypes
Microsoft.CodeAnalysis.Workspaces (3)
ITypeSymbolExtensions.MinimalAccessibilityVisitor.cs (1)
40foreach (var callingConventionType in symbol.Signature.UnmanagedCallingConventionTypes)
SymbolKey.FunctionPointerTypeSymbolKey.cs (2)
25visitor.WriteSymbolKeyArray(symbol.Signature.UnmanagedCallingConventionTypes); 44static (contextualSymbol, i) => SafeGet(contextualSymbol.Signature.UnmanagedCallingConventionTypes, i),