6 implementations of GetPointerType
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\MetadataReaderUtils.cs (1)
433public string GetPointerType(string elementType)
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\SymbolTree\SymbolTreeInfo.FirstEntityHandleProvider.cs (1)
49public EntityHandle GetPointerType(EntityHandle elementType) => elementType;
FindSymbols\SymbolTree\SymbolTreeInfo.Node.cs (1)
169public ParameterTypeInfo GetPointerType(ParameterTypeInfo elementType) => ComplexInfo;
System.Reflection.MetadataLoadContext (3)
System\Reflection\TypeLoading\General\Ecma\EcmaSignatureTypeProviderForToString.cs (1)
34public string GetPointerType(string elementType) => elementType + "*";
System\Reflection\TypeLoading\General\Ecma\EcmaWrappedTypeProvider.cs (1)
40public RoType GetPointerType(RoType elementType) => _typeProvider.GetPointerType(elementType.SkipTypeWrappers());
System\Reflection\TypeLoading\Modules\Ecma\EcmaModule.TypeProvider.cs (1)
26public RoType GetPointerType(RoType elementType) => elementType.GetUniquePointerType();
1 reference to GetPointerType
System.Reflection.Metadata (1)
System\Reflection\Metadata\Ecma335\SignatureDecoder.cs (1)
87return _provider.GetPointerType(elementType);