1 implementation of IFunctionPointerTypeReference
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\FunctionPointerTypeSymbolAdapter.cs (1)
22IFunctionPointerTypeReference
10 references to IFunctionPointerTypeReference
Microsoft.CodeAnalysis (6)
CodeGen\ReferenceDependencyWalker.cs (1)
95if (typeReference is Cci.IFunctionPointerTypeReference functionPointer)
PEWriter\MetadataVisitor.cs (3)
469public virtual void Visit(IFunctionPointerTypeReference functionPointerTypeReference) 640IFunctionPointerTypeReference? functionPointerTypeReference = typeReference as IFunctionPointerTypeReference;
PEWriter\MetadataWriter.cs (1)
3804if (typeReference is IFunctionPointerTypeReference functionPointerTypeReference)
PEWriter\TypeNameSerializer.cs (1)
81if (typeReference is IFunctionPointerTypeReference)
Microsoft.CodeAnalysis.CSharp (4)
Emitter\Model\FunctionPointerTypeSymbolAdapter.cs (2)
25ISignature IFunctionPointerTypeReference.Signature 37void IReference.Dispatch(MetadataVisitor visitor) => visitor.Visit((IFunctionPointerTypeReference)this);
Emitter\Model\PEModuleBuilder.cs (2)
1512internal Cci.IFunctionPointerTypeReference Translate(FunctionPointerTypeSymbol symbol) 1514return (Cci.IFunctionPointerTypeReference)GetCciAdapter(symbol);