1 instantiation of NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (1)
Symbols\MetadataOrSourceAssemblySymbol.cs (1)
153Interlocked.CompareExchange(ref _lazyNativeIntegerTypes[index], new NativeIntegerTypeSymbol(underlyingType), null);
21 references to NativeIntegerTypeSymbol
Microsoft.CodeAnalysis.CSharp (21)
Emitter\Model\NamedTypeSymbolAdapter.cs (1)
1061if (underlyingNamedTypeSymbol is NativeIntegerTypeSymbol)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
2856return t2 is NativeIntegerTypeSymbol nativeInteger ?
Symbols\MetadataOrSourceAssemblySymbol.cs (2)
36private NativeIntegerTypeSymbol[] _lazyNativeIntegerTypes; 141Interlocked.CompareExchange(ref _lazyNativeIntegerTypes, new NativeIntegerTypeSymbol[2], null);
Symbols\MissingMetadataTypeSymbol.cs (1)
356NativeIntegerTypeSymbol.VerifyEquality(this, other);
Symbols\NativeIntegerTypeSymbol.cs (15)
305private readonly NativeIntegerTypeSymbol _type; 308internal NativeIntegerTypeMap(NativeIntegerTypeSymbol type) 335private readonly NativeIntegerTypeSymbol _container; 339internal NativeIntegerMethodSymbol(NativeIntegerTypeSymbol container, MethodSymbol underlyingMethod, NativeIntegerPropertySymbol? associatedSymbol) 345NativeIntegerTypeSymbol.VerifyEquality(this, underlyingMethod); 386public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol.UnderlyingMethod); 413private readonly NativeIntegerTypeSymbol _containingType; 416internal NativeIntegerParameterSymbol(NativeIntegerTypeSymbol containingType, NativeIntegerMethodSymbol container, ParameterSymbol underlyingParameter) : base(underlyingParameter) 422NativeIntegerTypeSymbol.VerifyEquality(this, underlyingParameter); 445public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingParameter); 463private readonly NativeIntegerTypeSymbol _container; 466NativeIntegerTypeSymbol container, 468Func<NativeIntegerTypeSymbol, NativeIntegerPropertySymbol, MethodSymbol?, NativeIntegerMethodSymbol?> getAccessor) : 475NativeIntegerTypeSymbol.VerifyEquality(this, underlyingProperty); 494public override bool Equals(Symbol? other, TypeCompareKind comparison) => NativeIntegerTypeSymbol.EqualsHelper(this, other, comparison, symbol => symbol._underlyingProperty);
Symbols\Source\SourceNamedTypeSymbol.cs (1)
1804return t2 is NativeIntegerTypeSymbol nativeInteger ?