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