10 references to NotAnnotatedStatus
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\NullabilityInfoContext.cs (10)
22private readonly Dictionary<Module, NotAnnotatedStatus> _publicOnlyModules = new(); 283if (!_publicOnlyModules.TryGetValue(module, out NotAnnotatedStatus value)) 289if (value == NotAnnotatedStatus.None) 294if ((isPrivate || isFamilyAndAssembly) && value.HasFlag(NotAnnotatedStatus.Private) || 295isAssembly && value.HasFlag(NotAnnotatedStatus.Internal)) 303private static NotAnnotatedStatus PopulateAnnotationInfo(IList<CustomAttributeData> customAttributes) 313return NotAnnotatedStatus.Internal | NotAnnotatedStatus.Private; 317return NotAnnotatedStatus.Private; 322return NotAnnotatedStatus.None;