1 implementation of IFunctionPointerTypeReference
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\FunctionPointerTypeSymbolAdapter.cs (1)
23IFunctionPointerTypeReference
10 references to IFunctionPointerTypeReference
Microsoft.CodeAnalysis (6)
CodeGen\ReferenceDependencyWalker.cs (1)
95if (typeReference is Cci.IFunctionPointerTypeReference functionPointer)
PEWriter\MetadataVisitor.cs (3)
488public virtual void Visit(IFunctionPointerTypeReference functionPointerTypeReference) 662IFunctionPointerTypeReference? functionPointerTypeReference = typeReference as IFunctionPointerTypeReference;
PEWriter\MetadataWriter.cs (1)
3866if (typeReference is IFunctionPointerTypeReference functionPointerTypeReference)
PEWriter\TypeNameSerializer.cs (1)
81if (typeReference is IFunctionPointerTypeReference)
Microsoft.CodeAnalysis.CSharp (4)
Emitter\Model\FunctionPointerTypeSymbolAdapter.cs (2)
26ISignature IFunctionPointerTypeReference.Signature 38void IReference.Dispatch(MetadataVisitor visitor) => visitor.Visit((IFunctionPointerTypeReference)this);
Emitter\Model\PEModuleBuilder.cs (2)
1455internal Cci.IFunctionPointerTypeReference Translate(FunctionPointerTypeSymbol symbol) 1457return (Cci.IFunctionPointerTypeReference)GetCciAdapter(symbol);