Searched refs:SortFunction (Results 1 – 2 of 2) sorted by relevance
108 LVSortFunction SortFunction = nullptr; in getSortFunction() local111 SortFunction = Iter->second; in getSortFunction()112 return SortFunction; in getSortFunction()
689 LVSortFunction SortFunction = getSortFunction(); in sort() local690 if (SortFunction) { in sort()691 std::function<void(LVScope * Parent, LVSortFunction SortFunction)> Sort = in sort()692 [&](LVScope *Parent, LVSortFunction SortFunction) { in sort() argument693 auto Traverse = [&](auto *Set, LVSortFunction SortFunction) { in sort() argument695 std::stable_sort(Set->begin(), Set->end(), SortFunction); in sort()697 Traverse(Parent->Types, SortFunction); in sort()698 Traverse(Parent->Symbols, SortFunction); in sort()699 Traverse(Parent->Scopes, SortFunction); in sort()701 Traverse(Parent->Children, SortFunction); in sort()[all …]