13 references to RuntimeSupportsNumericIntPtr
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder_Operators.cs (2)
4434if (Compilation.Assembly.RuntimeSupportsNumericIntPtr) 4450if (Compilation.Assembly.RuntimeSupportsNumericIntPtr)
Compilation\CSharpCompilation.cs (1)
4684return !Assembly.RuntimeSupportsNumericIntPtr;
Lowering\LocalRewriter\LocalRewriter_Conversion.cs (2)
1394Debug.Assert(!_compilation.Assembly.RuntimeSupportsNumericIntPtr); 1693Debug.Assert(!_compilation.Assembly.RuntimeSupportsNumericIntPtr);
Symbols\AssemblySymbol.cs (1)
423return this.RuntimeSupportsNumericIntPtr;
Symbols\Compilation_WellKnownMembers.cs (1)
1043Debug.Assert(type.ContainingAssembly?.RuntimeSupportsNumericIntPtr != true);
Symbols\Metadata\PE\NativeIntegerTypeDecoder.cs (1)
19|| type.ContainingAssembly?.RuntimeSupportsNumericIntPtr == true)
Symbols\Metadata\PE\PENamedTypeSymbol.cs (1)
2586if (ContainingAssembly.RuntimeSupportsNumericIntPtr)
Symbols\NativeIntegerTypeSymbol.cs (1)
34Debug.Assert(!underlyingType.ContainingAssembly.RuntimeSupportsNumericIntPtr);
Symbols\Source\CustomModifierUtils.cs (1)
81if (!containingAssembly.RuntimeSupportsNumericIntPtr)
Symbols\Source\SourceNamedTypeSymbol.cs (1)
1758if (ContainingAssembly.RuntimeSupportsNumericIntPtr)
Symbols\TypeSymbol.cs (1)
559|| (SpecialType is SpecialType.System_IntPtr or SpecialType.System_UIntPtr && this.ContainingAssembly.RuntimeSupportsNumericIntPtr);