14 references to GetKnownValues
ILLink.RoslynAnalyzer (14)
DataFlow\FeatureContextLattice.cs (1)
62return string.Join(", ", EnabledFeatures.GetKnownValues());
DataFlow\InterproceduralState.cs (1)
55var methodsList = new List<MethodBodyValue>(Methods.GetKnownValues());
DataFlow\LocalDataFlowAnalysis.cs (1)
92foreach (var method in oldInterproceduralState.Methods.GetKnownValues())
DataFlow\LocalDataFlowVisitor.cs (3)
428var enumerator = capturedReferences.GetKnownValues().GetEnumerator(); 445foreach (var capturedReference in capturedReferences.GetKnownValues()) 566foreach (var capturedReference in capturedReferences.GetKnownValues())
src\tools\illink\src\ILLink.Shared\DataFlow\ValueSet.cs (6)
262var values = new EnumerableValues(left.DeepCopy().GetKnownValues()); 263values.UnionWith(right.DeepCopy().GetKnownValues()); 288var values = new EnumerableValues(left.DeepCopy().GetKnownValues()); 289values.IntersectWith(right.GetKnownValues()); 303sb.Append(string.Join(",", GetKnownValues().Select(v => v.ToString()))); 327return new ValueSet<TValue>(GetKnownValues().Select(value => value is IDeepCopyValue<TValue> copyValue ? copyValue.DeepCopy() : value));
src\tools\illink\src\ILLink.Shared\TrimAnalysis\ValueExtensions.cs (1)
70: multiValue.GetKnownValues();
TrimAnalysis\FeatureCheckReturnValuePattern.cs (1)
55foreach (string feature in FeatureCheckAnnotations.GetKnownValues())