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