2 overrides of IsNativeIntegerWrapperType
Microsoft.CodeAnalysis.CSharp (2)
Symbols\MissingMetadataTypeSymbol.cs (1)
362internal sealed override bool IsNativeIntegerWrapperType => _isNativeInt;
Symbols\NativeIntegerTypeSymbol.cs (1)
173internal override bool IsNativeIntegerWrapperType => true;
9 references to IsNativeIntegerWrapperType
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder_Expressions.cs (1)
1403|| type.IsNativeIntegerWrapperType
CodeGen\EmitConversion.cs (1)
157(toPredefTypeKind == Microsoft.Cci.PrimitiveTypeCode.IntPtr || toPredefTypeKind == Microsoft.Cci.PrimitiveTypeCode.UIntPtr) && !toType.IsNativeIntegerWrapperType ||
Symbols\AliasSymbol.cs (1)
416if (namespaceOrType is TypeSymbol { IsNativeIntegerWrapperType: true } &&
Symbols\Compilation_WellKnownMembers.cs (1)
1053builder.Add(type.IsNativeIntegerWrapperType);
Symbols\Metadata\PE\NativeIntegerTypeDecoder.cs (1)
120return (_transformFlags[_index++], type.IsNativeIntegerWrapperType) switch
Symbols\NativeIntegerTypeSymbol.cs (1)
203other.IsNativeIntegerWrapperType;
Symbols\Retargeting\RetargetingSymbolTranslator.cs (1)
209if (type.IsNativeIntegerWrapperType)
Symbols\TypeSymbol.cs (1)
558internal bool IsNativeIntegerType => IsNativeIntegerWrapperType
Symbols\TypeSymbolExtensions.cs (1)
1224var result = type.VisitType((type, unused1, unused2) => type.IsNativeIntegerWrapperType, (object?)null, canDigThroughNullable: true);