14 references to GetKnownValues
ILLink.RoslynAnalyzer (14)
DataFlow\FeatureContextLattice.cs (1)
62 return string.Join (", ", EnabledFeatures.GetKnownValues ());
DataFlow\InterproceduralState.cs (1)
55 var methodsList = new List<MethodBodyValue> (Methods.GetKnownValues ());
DataFlow\LocalDataFlowAnalysis.cs (1)
90 foreach (var method in oldInterproceduralState.Methods.GetKnownValues ()) {
DataFlow\LocalDataFlowVisitor.cs (3)
403 var enumerator = capturedReferences.GetKnownValues ().GetEnumerator (); 420 foreach (var capturedReference in capturedReferences.GetKnownValues ()) { 530 foreach (var capturedReference in capturedReferences.GetKnownValues ()) {
src\tools\illink\src\ILLink.Shared\DataFlow\ValueSet.cs (6)
243 var values = new EnumerableValues (left.DeepCopy ().GetKnownValues ()); 244 values.UnionWith (right.DeepCopy ().GetKnownValues ()); 269 var values = new EnumerableValues (left.DeepCopy ().GetKnownValues ()); 270 values.IntersectWith (right.GetKnownValues ()); 284 sb.Append (string.Join (",", GetKnownValues ().Select (v => v.ToString ()))); 307 return new ValueSet<TValue> (GetKnownValues ().Select (value => value is IDeepCopyValue<TValue> copyValue ? copyValue.DeepCopy () : value));
src\tools\illink\src\ILLink.Shared\TrimAnalysis\ValueExtensions.cs (1)
68 : multiValue.GetKnownValues ();
TrimAnalysis\FeatureCheckReturnValuePattern.cs (1)
54 foreach (string feature in FeatureCheckAnnotations.GetKnownValues ()) {