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