25 references to IntPtr
Microsoft.CodeAnalysis (11)
CodeGen\ILBuilderConversions.cs (7)
127case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 130case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 170case Microsoft.Cci.PrimitiveTypeCode.IntPtr when !@checked: 205case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 253case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 317case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 344case Microsoft.Cci.PrimitiveTypeCode.IntPtr:
PEWriter\MetadataWriter.cs (1)
3935case PrimitiveTypeCode.IntPtr:
PrimitiveTypeCodeExtensions.cs (1)
31case Cci.PrimitiveTypeCode.IntPtr:
SpecialTypes.cs (2)
114s_typeIdToTypeCodeMap[(int)SpecialType.System_IntPtr] = Microsoft.Cci.PrimitiveTypeCode.IntPtr; 138s_typeCodeToTypeIdMap[(int)Microsoft.Cci.PrimitiveTypeCode.IntPtr] = SpecialType.System_IntPtr;
Microsoft.CodeAnalysis.CSharp (8)
CodeGen\EmitConversion.cs (3)
32case Cci.PrimitiveTypeCode.IntPtr: 148case Microsoft.Cci.PrimitiveTypeCode.IntPtr when !fromType.IsNativeIntegerType: 157(toPredefTypeKind == Microsoft.Cci.PrimitiveTypeCode.IntPtr || toPredefTypeKind == Microsoft.Cci.PrimitiveTypeCode.UIntPtr) && !toType.IsNativeIntegerWrapperType ||
CodeGen\EmitExpression.cs (5)
1027case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 1432case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 2137var typeFrom = typeTo.IsUnsigned() ? Microsoft.Cci.PrimitiveTypeCode.UIntPtr : Microsoft.Cci.PrimitiveTypeCode.IntPtr; 3026case Microsoft.Cci.PrimitiveTypeCode.IntPtr: 3124case Microsoft.Cci.PrimitiveTypeCode.IntPtr:
Microsoft.CodeAnalysis.UnitTests (1)
CorLibTypesTests.cs (1)
60Assert.Equal(SpecialType.System_IntPtr, SpecialTypes.GetTypeFromMetadataName(Cci.PrimitiveTypeCode.IntPtr));
Microsoft.CodeAnalysis.VisualBasic (5)
CodeGen\EmitExpression.vb (5)
595Case Microsoft.Cci.PrimitiveTypeCode.IntPtr, 841Case Microsoft.Cci.PrimitiveTypeCode.IntPtr, 1509Dim typeFrom = If(typeTo.IsUnsigned(), Microsoft.Cci.PrimitiveTypeCode.UIntPtr, Microsoft.Cci.PrimitiveTypeCode.IntPtr) 2000Case Microsoft.Cci.PrimitiveTypeCode.IntPtr, 2070Case Microsoft.Cci.PrimitiveTypeCode.IntPtr,