5 references to GetEstimatedSize
tlens (5)
TLens.Analyzers\InverterCtorsChainAnalyzer.cs (1)
51
var entries = ctors.OrderByDescending(l => l.Item2.
GetEstimatedSize
()).Take(maxCount);
TLens.Analyzers\LargeStaticCtorAnalyzer.cs (1)
25
var entries = cctors.OrderByDescending(l => l.
GetEstimatedSize
()).Take(maxCount);
TLens.Analyzers\LimitedMethodCalls.cs (1)
51
var entries = methods.Where(l => l.Value.Count <= 3).OrderBy(l => l.Value.Count).ThenByDescending(l => l.Key.
GetEstimatedSize
()).Take(maxCount);
TLens\MethodDefinitionExtensions.cs (1)
20
str.Append(method.
GetEstimatedSize
());
TLens\SizeStatistics.cs (1)
13
return type.Methods.Sum(l => l.
GetEstimatedSize
());