6 overrides of IsFunctionPointer
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
187
public override bool
IsFunctionPointer
=> _unmodifiedType.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureFunctionPointerType.cs (1)
23
public override bool
IsFunctionPointer
=> true;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
34
public override bool
IsFunctionPointer
=> _unmodifiedType.IsFunctionPointer;
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
159
public override bool
IsFunctionPointer
=> typeImpl.IsFunctionPointer;
src\System\RuntimeType.CoreCLR.cs (1)
3820
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; }
18 references to IsFunctionPointer
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedFunctionPointerType.cs (1)
19
Debug.Assert(unmodifiedType.
IsFunctionPointer
);
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (2)
32
if (unmodifiedType.
IsFunctionPointer
)
187
public override bool IsFunctionPointer => _unmodifiedType.
IsFunctionPointer
;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureModifiedType.cs (1)
34
public override bool IsFunctionPointer => _unmodifiedType.
IsFunctionPointer
;
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
159
public override bool IsFunctionPointer => typeImpl.
IsFunctionPointer
;
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
109
if (rootElementType.
IsFunctionPointer
)
src\libraries\System.Private.CoreLib\src\System\Type.Helpers.cs (2)
52
if (
IsFunctionPointer
)
105
if (
IsFunctionPointer
)
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
252
if (!functionPointerType.
IsFunctionPointer
)
src\System\Reflection\Emit\SignatureHelper.cs (4)
111
Debug.Assert(functionPointerType.
IsFunctionPointer
);
476
else if (clsArgument.
IsFunctionPointer
)
823
if (t.
IsFunctionPointer
)
849
if (t.
IsFunctionPointer
)
src\System\RuntimeType.CoreCLR.cs (1)
1567
if (type.
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
)