11 overrides of HasNotNullConstraint
Microsoft.CodeAnalysis.CSharp (11)
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TypeParameterSymbol.cs (1)
87public override bool HasNotNullConstraint => false;
Symbols\ErrorTypeSymbol.ErrorTypeParameterSymbol.cs (1)
82public override bool HasNotNullConstraint => false;
Symbols\Metadata\PE\PETypeParameterSymbol.cs (1)
505public override bool HasNotNullConstraint
Symbols\Source\CrefTypeParameterSymbol.cs (1)
155public override bool HasNotNullConstraint => false;
Symbols\Source\IndexedTypeParameterSymbol.cs (1)
170public override bool HasNotNullConstraint => false;
Symbols\Source\SourceTypeParameterSymbol.cs (2)
543public override bool HasNotNullConstraint 633public abstract override bool HasNotNullConstraint { get; }
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListTypeParameterSymbol.cs (1)
33public override bool HasNotNullConstraint => false;
Symbols\Synthesized\SynthesizedInlineArrayTypeSymbol.cs (1)
238public override bool HasNotNullConstraint => false;
Symbols\SynthesizedSimpleMethodTypeParameterSymbol.cs (1)
62public override bool HasNotNullConstraint => false;
Symbols\Wrapped\WrappedTypeParameterSymbol.cs (1)
98public override bool HasNotNullConstraint
11 references to HasNotNullConstraint
Microsoft.CodeAnalysis.CSharp (11)
Symbols\ConstraintsHelper.cs (1)
1149if (typeParameter.HasNotNullConstraint && typeArgument.GetValueNullableAnnotation().IsAnnotated() && !typeArgument.Type.IsNonNullableValueType())
Symbols\PublicModel\TypeParameterSymbol.cs (1)
95bool ITypeParameterSymbol.HasNotNullConstraint => _underlying.HasNotNullConstraint;
Symbols\Source\ExtensionGroupingInfo.cs (2)
368(typeParameter1.HasNotNullConstraint != typeParameter2.HasNotNullConstraint))
Symbols\Source\SourceNamedTypeSymbol_Extension.cs (2)
430typeParameter.HasNotNullConstraint || typeParameter.AllowsRefLikeType; 629else if (typeParam.HasNotNullConstraint)
Symbols\Source\SourceTypeParameterSymbol.cs (2)
335if (this.HasNotNullConstraint) 973return this.OverriddenTypeParameter?.HasNotNullConstraint == true;
Symbols\TypeParameterSymbol.cs (2)
534if (this.HasNotNullConstraint || this.HasValueTypeConstraint) 741else if (this.HasNotNullConstraint)
Symbols\Wrapped\WrappedTypeParameterSymbol.cs (1)
102return _underlyingTypeParameter.HasNotNullConstraint;