24 references to Sort
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
1260Array.Sort(args, 0, args.Length, Comparer<Arg>.Create((x, y) => x.SortOrder.CompareTo(y.SortOrder)));
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (1)
1396Array.Sort(_data, 0, Math.Min(_itemsSeen, _capacity), comp);
Transforms\InvertHashUtils.cs (1)
208Array.Sort(buffer, 0, count, Comparer<Pair>.Create((x, y) => x.Order - y.Order));
Microsoft.ML.FastTree (5)
FastTreeRanking.cs (2)
858Array.Sort(permutation, 0, numDocuments, comparer); 995Array.Sort(permutation, 0, numDocs,
Training\DcgCalculator.cs (2)
456Array.Sort(permutation, 0, count, comparer); 467Array.Sort(permutation, 0, Math.Min(count, _secondLevelcomparers[threadIndex].CompareFirstN), _secondLevelcomparers[threadIndex]);
Training\WinLossCalculator.cs (1)
95Array.Sort(permutation, 0, count, comparer);
PresentationFramework (7)
System\Windows\Controls\Grid.cs (7)
2157Array.Sort(definitionIndices, 0, starDefinitionsCount, new StarDistributionOrderIndexComparer(definitions)); 2204Array.Sort(definitionIndices, 0, definitions.Length, new DistributionOrderIndexComparer(definitions)); 2242Array.Sort(definitionIndices, 0, definitions.Length, new RoundingErrorIndexComparer(roundingErrors)); 2437Array.Sort(definitionIndices, 0, minCount, new MinRatioIndexComparer(definitions)); 2438Array.Sort(definitionIndices, defCount, maxCount, new MaxRatioIndexComparer(definitions)); 2611Array.Sort(definitionIndices, 0, starCount, new StarWeightIndexComparer(definitions)); 2711Array.Sort(definitionIndices, 0, definitions.Length, new RoundingErrorIndexComparer(roundingErrors));
System.Collections (2)
System\Collections\Generic\SortedSet.cs (2)
110Array.Sort(elements, 0, count, comparer); 1132Array.Sort(elements, 0, length, Comparer);
System.Collections.Immutable (5)
System\Collections\Immutable\ImmutableArray_1.Builder.cs (3)
949Array.Sort(_elements, 0, this.Count, Comparer<T>.Default); 989Array.Sort(_elements, 0, _count, comparer); 1008Array.Sort(_elements, index, count, comparer);
System\Collections\Immutable\ImmutableArray_1.cs (1)
852Array.Sort(tmp, index, count, comparer);
System\Collections\Immutable\ImmutableList_1.Node.cs (1)
618Array.Sort(array, index, count, comparer);
System.Private.Xml (1)
System\Xml\Xsl\Runtime\XmlQuerySequence.cs (1)
611Array.Sort(sortArray, 0, Count, comparer);
System.Private.Xml.Linq (1)
System\Xml\Linq\Extensions.cs (1)
302Array.Sort(items, 0, count, XNode.DocumentOrderComparer);