18 implementations of AsGenericTypeInstanceReference
Microsoft.CodeAnalysis (9)
CodeGen\PrivateImplementationDetails.cs (1)
1100public Cci.IGenericTypeInstanceReference? AsGenericTypeInstanceReference => null;
Emit\EditAndContinue\DeletedSourceGenericParameter.cs (1)
49public IGenericTypeInstanceReference? AsGenericTypeInstanceReference => OldDefinition.AsGenericTypeInstanceReference;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
77public IGenericTypeInstanceReference? AsGenericTypeInstanceReference => OldDefinition.AsGenericTypeInstanceReference;
Emit\ErrorType.cs (1)
114Cci.IGenericTypeInstanceReference Cci.ITypeReference.AsGenericTypeInstanceReference
Emit\NoPia\CommonEmbeddedType.cs (1)
609Cci.IGenericTypeInstanceReference Cci.ITypeReference.AsGenericTypeInstanceReference
Emit\NoPia\CommonEmbeddedTypeParameter.cs (1)
164Cci.IGenericTypeInstanceReference Cci.ITypeReference.AsGenericTypeInstanceReference
PEWriter\InheritedTypeParameter.cs (1)
112public IGenericTypeInstanceReference? AsGenericTypeInstanceReference
PEWriter\ModifiedTypeReference.cs (1)
90IGenericTypeInstanceReference? ITypeReference.AsGenericTypeInstanceReference
PEWriter\RootModuleType.cs (1)
269IGenericTypeInstanceReference? ITypeReference.AsGenericTypeInstanceReference
Microsoft.CodeAnalysis.CSharp (9)
Emitter\Model\ArrayTypeSymbolAdapter.cs (1)
64Cci.IGenericTypeInstanceReference? Cci.ITypeReference.AsGenericTypeInstanceReference => null;
Emitter\Model\FunctionPointerTypeSymbolAdapter.cs (1)
44IGenericTypeInstanceReference? ITypeReference.AsGenericTypeInstanceReference => null;
Emitter\Model\GenericNestedTypeInstanceReference.cs (1)
28public override Cci.IGenericTypeInstanceReference AsGenericTypeInstanceReference
Emitter\Model\NamedTypeReference.cs (1)
107public abstract Cci.IGenericTypeInstanceReference AsGenericTypeInstanceReference
Emitter\Model\NamedTypeSymbolAdapter.cs (1)
94Cci.IGenericTypeInstanceReference Cci.ITypeReference.AsGenericTypeInstanceReference
Emitter\Model\PointerTypeSymbolAdapter.cs (1)
65Cci.IGenericTypeInstanceReference? Cci.ITypeReference.AsGenericTypeInstanceReference
Emitter\Model\SpecializedGenericNestedTypeInstanceReference.cs (1)
57public override Cci.IGenericTypeInstanceReference AsGenericTypeInstanceReference
Emitter\Model\SpecializedNestedTypeReference.cs (1)
46public override Cci.IGenericTypeInstanceReference AsGenericTypeInstanceReference
Emitter\Model\TypeParameterSymbolAdapter.cs (1)
89Cci.IGenericTypeInstanceReference Cci.ITypeReference.AsGenericTypeInstanceReference
13 references to AsGenericTypeInstanceReference
Microsoft.CodeAnalysis (11)
CodeGen\ReferenceDependencyWalker.cs (1)
86Cci.IGenericTypeInstanceReference? genericInstance = typeReference.AsGenericTypeInstanceReference;
Emit\EditAndContinue\DeletedSourceGenericParameter.cs (1)
49public IGenericTypeInstanceReference? AsGenericTypeInstanceReference => OldDefinition.AsGenericTypeInstanceReference;
Emit\EditAndContinue\DeletedSourceTypeDefinition.cs (1)
77public IGenericTypeInstanceReference? AsGenericTypeInstanceReference => OldDefinition.AsGenericTypeInstanceReference;
PEWriter\ITypeReferenceExtensions.cs (3)
20IGenericTypeInstanceReference? genTypeInstance = typeReference.AsGenericTypeInstanceReference; 29IGenericTypeInstanceReference? genericTypeInstanceReference = typeReference.AsGenericTypeInstanceReference; 50nestedTypeReference.AsGenericTypeInstanceReference != null;
PEWriter\MetadataVisitor.cs (1)
620IGenericTypeInstanceReference? genericTypeInstanceReference = typeReference.AsGenericTypeInstanceReference;
PEWriter\MetadataWriter.cs (2)
646if (nestedTypeReference.AsGenericTypeInstanceReference != null) 661Debug.Assert(namespaceTypeReference.AsGenericTypeInstanceReference == null);
PEWriter\ReferenceIndexerBase.cs (1)
113if (containingType.AsGenericTypeInstanceReference != null ||
PEWriter\TypeNameSerializer.cs (1)
165IGenericTypeInstanceReference genInst = typeReference.AsGenericTypeInstanceReference;
Microsoft.CodeAnalysis.CSharp (2)
Emitter\Model\NamedTypeSymbolAdapter.cs (2)
875Debug.Assert(((Cci.ITypeReference)this).AsGenericTypeInstanceReference != null); 896Debug.Assert(((Cci.ITypeReference)this).AsGenericTypeInstanceReference != null);