6 overrides of IsFunctionPointer
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
187public override bool IsFunctionPointer => _unmodifiedType.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureFunctionPointerType.cs (1)
23public override bool IsFunctionPointer => true;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
34public override bool IsFunctionPointer => _unmodifiedType.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
159public override bool IsFunctionPointer => typeImpl.IsFunctionPointer;
src\System\RuntimeType.CoreCLR.cs (1)
3820public override bool IsFunctionPointer => RuntimeTypeHandle.IsFunctionPointer(this);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
55public abstract override bool IsFunctionPointer { get; }
18 references to IsFunctionPointer
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedFunctionPointerType.cs (1)
19Debug.Assert(unmodifiedType.IsFunctionPointer);
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (2)
32if (unmodifiedType.IsFunctionPointer) 187public override bool IsFunctionPointer => _unmodifiedType.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
34public override bool IsFunctionPointer => _unmodifiedType.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
159public override bool IsFunctionPointer => typeImpl.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
109if (rootElementType.IsFunctionPointer)
src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (2)
52if (IsFunctionPointer) 105if (IsFunctionPointer)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
252if (!functionPointerType.IsFunctionPointer)
src\System\Reflection\Emit\SignatureHelper.cs (4)
111Debug.Assert(functionPointerType.IsFunctionPointer); 476else if (clsArgument.IsFunctionPointer) 823if (t.IsFunctionPointer) 849if (t.IsFunctionPointer)
src\System\RuntimeType.CoreCLR.cs (1)
1567if (type.IsFunctionPointer)
System.Reflection.Emit (4)
System\Reflection\Emit\ILGeneratorImpl.cs (1)
728if (!functionPointerType.IsFunctionPointer)
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
700|| type.IsFunctionPointer) 1107if (type.IsFunctionPointer)
System\Reflection\Emit\SignatureHelper.cs (1)
216else if (type.IsFunctionPointer)