6 implementations of GetFunctionPointerType
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\MetadataReaderUtils.cs (1)
415public string GetFunctionPointerType(MethodSignature<string> signature)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SymbolTree\SymbolTreeInfo.FirstEntityHandleProvider.cs (1)
55public EntityHandle GetFunctionPointerType(MethodSignature<EntityHandle> signature) => default;
FindSymbols\SymbolTree\SymbolTreeInfo.Node.cs (1)
159public ParameterTypeInfo GetFunctionPointerType(MethodSignature<ParameterTypeInfo> signature) => ComplexInfo;
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\General\Ecma\EcmaSignatureTypeProviderForToString.cs (1)
57public string GetFunctionPointerType(MethodSignature<string> signature)
System\Reflection\TypeLoading\General\Ecma\EcmaWrappedTypeProvider.cs (1)
55public RoType GetFunctionPointerType(MethodSignature<RoType> signature) => _typeProvider.GetFunctionPointerType(signature);
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.TypeProvider.cs (1)
38public RoType GetFunctionPointerType(MethodSignature<RoType> signature) => new RoFunctionPointerType(this, signature);
1 reference to GetFunctionPointerType
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\SignatureDecoder.cs (1)
103return _provider.GetFunctionPointerType(methodSignature);