6 overrides of IsFunctionPointer
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
188
public override bool
IsFunctionPointer
=> _unmodifiedType.IsFunctionPointer;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureFunctionPointerType.cs (1)
23
public override bool
IsFunctionPointer
=> true;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
34
public override bool
IsFunctionPointer
=> _unmodifiedType.IsFunctionPointer;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
160
public override bool
IsFunctionPointer
=> typeImpl.IsFunctionPointer;
System\RuntimeType.NativeAot.cs (1)
549
public override bool
IsFunctionPointer
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
55
public abstract override bool
IsFunctionPointer
{ get; }
15 references to IsFunctionPointer
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedFunctionPointerType.cs (1)
19
Debug.Assert(unmodifiedType.
IsFunctionPointer
);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (2)
32
if (unmodifiedType.
IsFunctionPointer
)
188
public override bool IsFunctionPointer => _unmodifiedType.
IsFunctionPointer
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
34
public override bool IsFunctionPointer => _unmodifiedType.
IsFunctionPointer
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
160
public override bool IsFunctionPointer => typeImpl.
IsFunctionPointer
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (2)
52
if (
IsFunctionPointer
)
105
if (
IsFunctionPointer
)
System\Reflection\DynamicInvokeInfo.cs (2)
104
Debug.Assert(argumentType.
IsFunctionPointer
);
163
Debug.Assert(returnType.
IsFunctionPointer
);
System\Runtime\CompilerServices\RuntimeHelpers.NativeAot.cs (1)
308
if (type.HasElementType || type.IsGenericParameter || type.
IsFunctionPointer
)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidator.cs (1)
78
if (actualArg.IsSystemVoid() || (actualArg.HasElementType && !actualArg.IsArray) || actualArg.
IsFunctionPointer
)
System.Reflection.Emit (4)
System\Reflection\Emit\ILGeneratorImpl.cs (1)
728
if (!functionPointerType.
IsFunctionPointer
)
System\Reflection\Emit\ModuleBuilderImpl.cs (2)
700
|| type.
IsFunctionPointer
)
1107
if (type.
IsFunctionPointer
)
System\Reflection\Emit\SignatureHelper.cs (1)
216
else if (type.
IsFunctionPointer
)