13 references to RuntimeSupportsNumericIntPtr
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Operators.cs (2)
6112if (Compilation.Assembly.RuntimeSupportsNumericIntPtr) 6128if (Compilation.Assembly.RuntimeSupportsNumericIntPtr)
Compilation\CSharpCompilation.cs (1)
4917return !Assembly.RuntimeSupportsNumericIntPtr;
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (2)
1605Debug.Assert(!_compilation.Assembly.RuntimeSupportsNumericIntPtr); 1914Debug.Assert(!_compilation.Assembly.RuntimeSupportsNumericIntPtr);
Symbols\AssemblySymbol.cs (1)
430return this.RuntimeSupportsNumericIntPtr;
Symbols\Compilation_WellKnownMembers.cs (1)
1085Debug.Assert(type.ContainingAssembly?.RuntimeSupportsNumericIntPtr != true);
Symbols\Metadata\PE\NativeIntegerTypeDecoder.cs (1)
19|| type.ContainingAssembly?.RuntimeSupportsNumericIntPtr == true)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
3218if (ContainingAssembly.RuntimeSupportsNumericIntPtr)
Symbols\NativeIntegerTypeSymbol.cs (1)
36Debug.Assert(!underlyingType.ContainingAssembly.RuntimeSupportsNumericIntPtr);
Symbols\Source\CustomModifierUtils.cs (1)
81if (!containingAssembly.RuntimeSupportsNumericIntPtr)
Symbols\Source\SourceNamedTypeSymbol.cs (1)
1875if (ContainingAssembly.RuntimeSupportsNumericIntPtr)
Symbols\TypeSymbol.cs (1)
561|| (SpecialType is SpecialType.System_IntPtr or SpecialType.System_UIntPtr && this.ContainingAssembly.RuntimeSupportsNumericIntPtr);