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)
92
foreach (var method in oldInterproceduralState.Methods.
GetKnownValues
())
DataFlow\LocalDataFlowVisitor.cs (3)
428
var enumerator = capturedReferences.
GetKnownValues
().GetEnumerator();
445
foreach (var capturedReference in capturedReferences.
GetKnownValues
())
566
foreach (var capturedReference in capturedReferences.
GetKnownValues
())
src\tools\illink\src\ILLink.Shared\DataFlow\ValueSet.cs (6)
262
var values = new EnumerableValues(left.DeepCopy().
GetKnownValues
());
263
values.UnionWith(right.DeepCopy().
GetKnownValues
());
288
var values = new EnumerableValues(left.DeepCopy().
GetKnownValues
());
289
values.IntersectWith(right.
GetKnownValues
());
303
sb.Append(string.Join(",",
GetKnownValues
().Select(v => v.ToString())));
327
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)
70
: multiValue.
GetKnownValues
();
TrimAnalysis\FeatureCheckReturnValuePattern.cs (1)
55
foreach (string feature in FeatureCheckAnnotations.
GetKnownValues
())