4 overrides of IsFunctionPointer
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
185
public override bool
IsFunctionPointer
=> _unmodifiedType.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
157
public override bool
IsFunctionPointer
=> typeImpl.IsFunctionPointer;
src\System\RuntimeType.CoreCLR.cs (1)
3769
public override bool
IsFunctionPointer
=> RuntimeTypeHandle.IsFunctionPointer(this);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
55
public abstract override bool
IsFunctionPointer
{ get; }
5 references to IsFunctionPointer
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedFunctionPointerType.cs (1)
21
Debug.Assert(unmodifiedType.
IsFunctionPointer
);
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (2)
32
if (unmodifiedType.
IsFunctionPointer
)
185
public override bool IsFunctionPointer => _unmodifiedType.
IsFunctionPointer
;
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
157
public override bool IsFunctionPointer => typeImpl.
IsFunctionPointer
;
src\System\RuntimeType.CoreCLR.cs (1)
1538
if (type.
IsFunctionPointer
)