14 references to CreateNonLazyType
Microsoft.CodeAnalysis.CSharp (14)
Symbols\TypeWithAnnotations.cs (14)
204return CreateNonLazyType(typeSymbol, NullableAnnotation.Annotated, this.CustomModifiers);
712result = CreateNonLazyType(newTypeSymbol, NullableAnnotation.Oblivious, result.CustomModifiers);
732return CreateNonLazyType(typeSymbol, NullableAnnotation.NotAnnotated, CustomModifiers);
745return CreateNonLazyType(newTypeSymbol, NullableAnnotation.Oblivious, CustomModifiers);
909return CreateNonLazyType(type.DefaultType, type.NullableAnnotation, customModifiers);
916return CreateNonLazyType(typeSymbol, type.NullableAnnotation, customModifiers);
921return CreateNonLazyType(type.DefaultType, NullableAnnotation.Annotated, _customModifiers);
927return CreateNonLazyType(defaultType, defaultType.IsNullableType() ? type.NullableAnnotation : NullableAnnotation.NotAnnotated, _customModifiers);
1014return CreateNonLazyType(type.DefaultType, type.NullableAnnotation, customModifiers);
1019return CreateNonLazyType(typeSymbol, type.NullableAnnotation, customModifiers);
1024return CreateNonLazyType(type.DefaultType, NullableAnnotation.Annotated, _customModifiers);
1030return CreateNonLazyType(defaultType, defaultType.IsNullableType() ? type.NullableAnnotation : NullableAnnotation.NotAnnotated, _customModifiers);
1125return CreateNonLazyType(resolvedType, type.NullableAnnotation, customModifiers);
1135return CreateNonLazyType(typeSymbol, type.NullableAnnotation, customModifiers);