- common/rzchroma/rzchroma_manager.lua:78 --
table.sort(activeDeviceEffects, EffectSort)
- ingame/antiquities/antiquitycategorydata.lua:91 --
table.sort(self.subcategories, ZO_AntiquityCategory_Base.CompareTo)
- ingame/antiquities/antiquitycategorydata.lua:148 --
table.sort(self.antiquities, ZO_DefaultAntiquityOrSetSortComparison)
- ingame/antiquities/antiquitycategorydata.lua:153 --
table.sort(self.subcategories, ZO_AntiquityCategory.CompareTo)
- ingame/antiquities/antiquitydatamanager.lua:134 --
table.sort(self.topLevelCategories, ZO_AntiquityCategory.CompareTo)
- ingame/antiquities/gamepad/antiquityjournal_gamepad.lua:1173 --
table.sort(antiquitySection.list, antiquitySection.sortFunction)
- ingame/antiquities/keyboard/antiquityjournal_keyboard.lua:975 --
table.sort(antiquities, sortFunction)
- ingame/banking/gamepad/banking_gamepad.lua:82 --
table.sort(slots, self.list.sortFunction)
- ingame/battleground/battlegroundmedalinfo_shared.lua:150 --
table.sort(self.scoreboardEntryRawMedalData, MedalSort)
- ingame/battleground/battlegroundobjectivestatedisplay.lua:46 --
table.sort(self.objectives, self.sortFunction)
- ingame/battleground/battlegroundscoreboard.lua:277 --
table.sort(self.playerEntryData, SortPlayerData)
- ingame/battleground/battlegroundscorehud.lua:193 --
table.sort(self.teamSections, self.teamSectionSort)
- ingame/buffdebuff/buffdebuffstyles.lua:136 --
table.sort(self.sortedBuffs, self.SortCallbackFunction)
- ingame/buffdebuff/buffdebuffstyles.lua:139 --
table.sort(self.sortedDebuffs, self.SortCallbackFunction)
- ingame/cadwell/gamepad/cadwell_gamepad.lua:91 --
table.sort(zones, ZO_CadwellSort)
- ingame/cadwell/keyboard/cadwell.lua:131 --
table.sort(objectives, ZO_CadwellSort)
- ingame/cadwell/keyboard/cadwell.lua:138 --
table.sort(zones, ZO_CadwellSort)
- ingame/campaign/campaignbrowser.lua:447 --
table.sort(self.filteredList, self.sortFunction)
- ingame/campaign/campaignbrowser_manager.lua:275 --
table.sort(rulesetIds, CompareRulesetsByDuration)
- ingame/campaign/campaignscoring_shared.lua:68 --
table.sort(scoreInfos, ScoreInfoComparator)
- ingame/campaign/gamepad/campaignbrowser_gamepad.lua:788 --
table.sort(self.campaignEntries, function(left, right) return ZO_TableOrderingFunction(left, right, "campaignSort", DEFAULT_GAMEPAD_CAMPAIGN_ITEM_SORT, ZO_SORT_ORDER_UP) end)
- ingame/campaign/gamepad/campaignbrowser_gamepad.lua:801 --
table.sort(self.campaignRulesetTypes)
- ingame/campaign/gamepad/campaignemperor_gamepad.lua:140 --
table.sort(self.leaderboardAlliances, LeaderboardSortFunc)
- ingame/centerscreenannounce/centerscreenannounce.lua:1325 --
table.sort(self.displayQueue, SortMessageParams)
- ingame/champion/champion.lua:1639 --
table.sort(self.starsToAnimateForConfirm, SortConfirmStars)
- ingame/chatsystem/chatoptions.lua:202 --
table.sort(sortedEntries, FilterComparator)
- ingame/chatsystem/sharedchatsystem.lua:2281 --
table.sort(switches)
- ingame/chatsystem/gamepad/chatmenu_gamepad.lua:112 --
table.sort(switches)
- ingame/collections/collectibledatamanager.lua:729 --
table.sort(self.sortedCollectibles, function(left, right)
if left:IsUnlocked() ~= right:IsUnlocked() then
return left:IsUnlocked()
elseif left:GetSortOrder() ~= right:GetSortOrder() then
return left:GetSortOrder() < right:GetSortOrder()
elseif left:IsValidForPlayer() ~= right:IsValidForPlayer() then
return left:IsValidForPlayer()
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/collectibledatamanager.lua:751 --
table.sort(tempTable, function(left, right)
return left.name < right.name
end)
- ingame/collections/collectibledatamanager.lua:825 --
table.sort(tempTable, function(left, right)
return left.name < right.name
end)
- ingame/collections/collectibledatamanager.lua:859 --
table.sort(self.sortedCollectibles, function(left, right)
if left:IsUnlocked() ~= right:IsUnlocked() then
return left:IsUnlocked()
elseif left:GetOutfitStyleItemStyleId() ~= right:GetOutfitStyleItemStyleId() then
return itemStyleNameLookupTable[left:GetOutfitStyleItemStyleId()] < itemStyleNameLookupTable[right:GetOutfitStyleItemStyleId()]
elseif left:GetSortOrder() ~= right:GetSortOrder() then
return left:GetSortOrder() < right:GetSortOrder()
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/collectibledatamanager.lua:892 --
table.sort(self.sortedCollectibles, function(left, right)
if left:IsPrimaryResidence() ~= right:IsPrimaryResidence() then
return left:IsPrimaryResidence()
elseif left:IsUnlocked() ~= right:IsUnlocked() then
return left:IsUnlocked()
elseif left:GetSortOrder() ~= right:GetSortOrder() then
return left:GetSortOrder() < right:GetSortOrder()
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/collectibledatamanager.lua:925 --
table.sort(self.sortedCollectibles, function(left, right)
if left:GetSortOrder() ~= right:GetSortOrder() then
return left:GetSortOrder() < right:GetSortOrder()
else
return collectibleNameLookupTable[left:GetId()] < collectibleNameLookupTable[right:GetId()]
end
end)
- ingame/collections/itemsetcollectionsdata.lua:631 --
table.sort(self.subcategories, ZO_ItemSetCollectionCategoryData.CompareTo)
- ingame/collections/itemsetcollectionsdata.lua:638 --
table.sort(self.collections, ZO_ItemSetCollectionData.CompareTo)
- ingame/collections/itemsetcollectionsdatamanager.lua:156 --
table.sort(self.topLevelCategories, ZO_ItemSetCollectionCategoryData.CompareTo)
- ingame/companion/gamepad/companionequipment_gamepad.lua:776 --
table.sort(filteredDataTable, ZO_GamepadInventory_DefaultItemSortComparator)
- ingame/companion/keyboard/companionequipment_keyboard.lua:330 --
table.sort(scrollData, self.sortFunction)
- ingame/companion/keyboard/companionequipment_keyboard.lua:387 --
table.sort(scrollData, self.sortFunction)
- ingame/contacts/notifications_common.lua:1718 --
table.sort(scrollData, self.sortFunction)
- ingame/contacts/notifications_common.lua:1798 --
table.sort(self.list.dataList, function(listEntry1, listEntry2) return self:CompareNotifications(listEntry1, listEntry2) end)
- ingame/contacts/keyboard/friendslist_keyboard.lua:196 --
table.sort(scrollData, self.sortFunction)
- ingame/contacts/keyboard/ignorelist_keyboard.lua:114 --
table.sort(scrollData, self.sortFunction)
- ingame/crafting/craftingresults_base.lua:453 --
table.sort(resultItems, CompareCraftingResultItems)
- ingame/crafting/provisioner_manager.lua:195 --
table.sort(recipeList.recipes, RecipeComparator)
- ingame/crafting/sharedenchanting.lua:299 --
table.sort(sortedItems, CompareExtractingItems)
- ingame/crafting/smithingextraction_shared.lua:249 --
table.sort(sortedItems, CompareExtractingItems)
- ingame/crafting/gamepad/gamepadcraftinginventory.lua:122 --
table.sort(filteredDataTable, sortFunction)
- ingame/crafting/keyboard/craftinginventory.lua:316 --
table.sort(scrollData, self.sortFunction)
- ingame/crowncrates/crowncratespackchoosing.lua:864 --
table.sort(crateIds, function(a, b) return a > b end)
- ingame/crowncrates/keyboard/crowngemification_keyboard.lua:181 --
table.sort(self.personalList, self.SortData)
- ingame/deathrecap/deathrecap.lua:238 --
table.sort(attacks, SortAttacks)
- ingame/dyeing/dyeing_shared.lua:49 --
table.sort(slotsTable, DyeableSlotSortComparator)
- ingame/dyeing/dyeing_shared.lua:415 --
table.sort(sortedCategories)
- ingame/dyeing/dyeing_shared.lua:716 --
table.sort(self.dyesByHueCategory[hueCategory], ZO_Dyeing_DyeSortComparator)
- ingame/dyeing/dyeing_shared.lua:719 --
table.sort(self.dyesByRarity[rarity], ZO_Dyeing_DyeSortComparator)
- ingame/dyeing/gamepad/dyeing_gamepad.lua:295 --
table.sort(tempTable, ZO_DyeSwatchesGridSort)
- ingame/giftinventory/gamepad/giftinventorycategory_gamepad.lua:131 --
table.sort(entries, self.giftSortFunction)
- ingame/giftinventory/keyboard/giftinventorycategory_keyboard.lua:78 --
table.sort(scrollData, self.sortFunction)
- ingame/group/keyboard/zo_groupmenu_keyboard.lua:256 --
table.sort(nodeDataList, PrioritySort)
- ingame/guild/guildheraldry_shared.lua:163 --
table.sort(self.colorListsByCategory[hueCategory], ZO_Dyeing_DyeSortComparator)
- ingame/guild/guildheraldry_shared.lua:174 --
table.sort(self.sortedColorList, ZO_DyeSwatchesGridSort)
- ingame/guild/guildweeklybids_shared.lua:51 --
table.sort(self.masterList, CompareBids)
- ingame/guild/guildweeklybids_shared.lua:67 --
table.sort(scrollDataList, self.sortFunction)
- ingame/guild/gamepad/guildhistory_gamepad.lua:445 --
table.sort(self.guildEvents, function(event1, event2) return event1.eventId > event2.eventId end)
- ingame/guild/keyboard/guildhistory_keyboard.lua:267 --
table.sort(scrollData, self.sortFunction)
- ingame/guild/keyboard/guildroster_keyboard.lua:191 --
table.sort(scrollData, self.sortFunction)
- ingame/guildfinder/keyboard/guildfinder_applicationslist_keyboard.lua:29 --
table.sort(scrollData, self.sortFunction)
- ingame/guildfinder/keyboard/guildrecruitment_blacklist_keyboard.lua:72 --
table.sort(scrollData, self.sortFunction)
- ingame/help/gamepad/help_submitfeedback_gamepad.lua:124 --
table.sort(iterationEntries, fieldData.sortFunction)
- ingame/help/keyboard/helpsubmitfeedback_keyboard.lua:82 --
table.sort(iterationEntries, fieldData.sortFunction)
- ingame/housingeditor/furnitureclasses_shared.lua:775 --
table.sort(self.subcategories, SortCategories)
- ingame/housingeditor/housesettings_manager.lua:186 --
table.sort(houseEntries, ZO_HouseSettings_HouseEntrySort)
- ingame/housingeditor/housingeditorhud.lua:3597 --
table.sort(self.keybindDescriptors, CompareKeybindOrder)
- ingame/housingeditor/gamepad/furnitureclasses_gamepad.lua:459 --
table.sort(sortedEntries, self.CompareFurnitureEntriesFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:409 --
table.sort(scrollData, self.CompareFurnitureEntriesFunction)
- ingame/housingeditor/keyboard/furnitureclasses_keyboard.lua:533 --
table.sort(scrollData, self.sortFunction)
- ingame/inventory/inventory.lua:1238 --
table.sort(scrollData, inventory.sortFn)
- ingame/inventory/inventorywallet.lua:144 --
table.sort(scrollData, self.sortFunction)
- ingame/inventory/gamepad/gamepadinventory.lua:1270 --
table.sort(filteredDataTable, ZO_GamepadInventory_QuestItemSortComparator)
- ingame/inventory/gamepad/gamepadinventory.lua:1278 --
table.sort(filteredDataTable, ZO_GamepadInventory_DefaultItemSortComparator)
- ingame/inventory/gamepad/inventoryitemimprovement_gamepad.lua:134 --
table.sort(self.enumeratedList, self.sortComparator)
- ingame/inventory/gamepad/inventorylist_gamepad.lua:449 --
table.sort(slots, self.sortFunction or ItemSortFunc)
- ingame/leveluprewards/leveluprewards_manager.lua:91 --
table.sort(self.pendingLevelUpRewards, function(...) return self:SortRewardAndAdditionalUnlockEntries(...) end)
- ingame/leveluprewards/leveluprewards_manager.lua:106 --
table.sort(self.upcomingLevelUpRewards, function(...) return self:SortRewardAndAdditionalUnlockEntries(...) end)
- ingame/leveluprewards/leveluprewards_manager.lua:122 --
table.sort(self.upcomingMilestoneLevelUpRewards, function(...) return self:SortRewardAndAdditionalUnlockEntries(...) end)
- ingame/lfg/zo_activityfinderroot_manager.lua:243 --
table.sort(sortedActivityData, LFGSort)
- ingame/lorelibrary/gamepad/bookset_gamepad.lua:97 --
table.sort(books, BookSorter)
- ingame/lorelibrary/gamepad/library_gamepad.lua:72 --
table.sort(categories, NameSorter)
- ingame/lorelibrary/gamepad/library_gamepad.lua:90 --
table.sort(collections, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:138 --
table.sort(categories, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:158 --
table.sort(collections, NameSorter)
- ingame/lorelibrary/keyboard/lorelibrary_keyboard.lua:269 --
table.sort(scrollData, BookEntryComparator)
- ingame/mail/gamepad/mailinbox_gamepad.lua:706 --
table.sort(entries, SortFunction)
- ingame/mail/keyboard/mailinbox_keyboard.lua:398 --
table.sort(playerList, MailComparator)
- ingame/mail/keyboard/mailinbox_keyboard.lua:399 --
table.sort(systemList, MailComparator)
- ingame/map/maplocationtooltip.lua:54 --
table.sort(groupings, SortGroupings)
- ingame/map/maplocationtooltip.lua:58 --
table.sort(grouping, SortGrouping)
- ingame/map/worldmap.lua:858 --
table.sort(foundTooltipMouseOverPins, GamepadTooltipPinSortFunction)
- ingame/map/worldmap.lua:860 --
table.sort(foundTooltipMouseOverPins, TooltipPinSortFunction)
- ingame/map/worldmap.lua:1216 --
table.sort(pinDatas, SortPinDatas)
- ingame/map/worldmap.lua:6223 --
table.sort(self.antiquityDigSitePinInfo, function(left, right)
return left.normalizedY < right.normalizedY
end)
- ingame/map/worldmapantiquities_shared.lua:111 --
table.sort(antiquityEntries, AntiquitySort)
- ingame/map/worldmaphouses_manager.lua:53 --
table.sort(houseMapData, HouseMapDataSort)
- ingame/map/worldmaplocations_shared.lua:68 --
table.sort(mapData, function(a,b)
return a.locationName < b.locationName
end)
- ingame/map/worldmapquests_shared.lua:156 --
table.sort(self.masterList, self.CompareQuests)
- ingame/map/gamepad/worldmapchoicedialog_gamepad.lua:120 --
table.sort(travelPinHandlers, TravelPinHandlerSortFunction)
- ingame/map/gamepad/worldmapchoicedialog_gamepad.lua:175 --
table.sort(questPinHandlers, QuestPinHandlersSortFunction)
- ingame/map/gamepad/worldmapchoicedialog_gamepad.lua:247 --
table.sort(antiquityPinHandlers, QuestPinHandlersSortFunction)
- ingame/playeremote/playeremote.lua:169 --
table.sort(emoteList, emoteSortFunction)
- ingame/playeremote/playeremote.lua:172 --
table.sort(self.emoteCategoryTypes, CompareCategories)
- ingame/profiler/profilerutils.lua:20 --
table.sort(sources, function(a, b) return a.count > b.count end)
- ingame/quickslot/quickslot.lua:491 --
table.sort(scrollData, self.sortFunction)
- ingame/repair/repairwindow.lua:219 --
table.sort(scrollData, Comparator)
- ingame/stats/gamepad/zo_stats_gamepad.lua:894 --
table.sort(sortedArtificialEffectsTable, ArtificialEffectsRowComparator)
- ingame/stats/keyboard/zo_stats_keyboard.lua:779 --
table.sort(effectsRows, EffectsRowComparator)
- ingame/storewindow/gamepad/storewindow_gamepad_util.lua:451 --
table.sort(items, self.sortFunc)
- ingame/storewindow/keyboard/buyback_keyboard.lua:230 --
table.sort(scrollData, Comparator)
- ingame/storewindow/keyboard/storewindow_keyboard.lua:493 --
table.sort(scrollData, self.sortFunction)
- ingame/timedactivities/timedactivities_manager.lua:148 --
table.sort(self.rewardList, TimedActivityRewardComparator)
- ingame/tooltip/cadwellstooltips.lua:18 --
table.sort(objectives, ZO_CadwellSort)
- ingame/tradinghouse/tradinghousefeatures_shared.lua:472 --
table.sort(enchantmentChoices, CompareEnchantChoices)
- ingame/tradinghouse/tradinghousesearchhistory_manager.lua:48 --
table.sort(self.searchEntries, CompareSearchEntries)
- ingame/voicechat/console/zo_voicechatchannels_gamepad.lua:171 --
table.sort(guildRooms, GuildRoomEntriesComparator)
- ingame/voicechat/console/zo_voicechatchannels_gamepad.lua:224 --
table.sort(guildRooms, GuildRoomEntriesComparator)
- ingame/voicechat/console/zo_voicechat_manager.lua:123 --
table.sort(self.list, SortParticipantEntries)
- ingame/zonestories/zonestories_manager.lua:82 --
table.sort(self.zoneList, function(left, right)
return left.name < right.name
end)
- ingame/zonestories/keyboard/zonestories_keyboard.lua:306 --
table.sort(activityData, ActivityDataComparator)
- ingame/zo_loot/loot_shared.lua:192 --
table.sort(lootData, LootSortFunction)
- ingame/zo_quest/questjournal_manager.lua:213 --
table.sort(self.categories, ZO_QuestJournal_Manager_SortQuestCategories)
- ingame/zo_quest/questjournal_manager.lua:214 --
table.sort(self.quests, ZO_QuestJournal_Manager_SortQuestEntries)
- ingame/zo_quest/questtimer.lua:184 --
table.sort(sortedTimers, TimerComparer)
- internalingame/market/gamepad/marketproductlistscene_gamepad.lua:106 --
table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareCrateMarketProducts(...)
end)
- internalingame/market/gamepad/marketproductlistscene_gamepad.lua:120 --
table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareBundleMarketProducts(...)
end)
- internalingame/market/gamepad/market_gamepad.lua:996 --
table.sort(sortedList, SubcategoryListSort)
- internalingame/market/gamepad/market_gamepad.lua:1161 --
table.sort(labeledGroupTable, self.marketProductGroupTableSortFunction)
- internalingame/market/gamepad/market_gamepad.lua:1801 --
table.sort(childTiles, function(a,b)
return a.displayName < b.displayName
end)
- internalingame/market/keyboard/marketclasses_keyboard.lua:476 --
table.sort(iconControls, function(a,b)
return a.marketProductIcon:GetDisplayName() < b.marketProductIcon:GetDisplayName()
end)
- internalingame/market/keyboard/marketcontentfragment_keyboard.lua:101 --
table.sort(self.marketProducts, function(entry1, entry2)
return self.owner:CompareMarketProducts(entry1, entry2)
end)
- internalingame/market/keyboard/marketlistfragment_keyboard.lua:128 --
table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareCrateMarketProducts(...)
end)
- internalingame/market/keyboard/marketlistfragment_keyboard.lua:141 --
table.sort(marketProducts, function(...)
return ZO_Market_Shared.CompareBundleMarketProducts(...)
end)
- internalingame/market/keyboard/market_keyboard.lua:831 --
table.sort(labeledGroupTable, function(entry1, entry2)
return self:CompareMarketProducts(entry1, entry2)
end)
- internalingame/marketannouncement/marketannouncement_manager.lua:74 --
table.sort(self.productInfoTable, CompareMarketProducts)
- internalingame/scrying/scrying.lua:1142 --
table.sort(borderVisibleHexes, SortByHexIndex)
- libraries/zo_combobox/zo_combobox_base.lua:180 --
table.sort(self.m_sortedItems, function(item1, item2) return ComboBoxSortHelper(item1, item2, self) end)
- libraries/zo_dialog/zo_listdialog.lua:103 --
table.sort(scrollData, sortFunction)
- libraries/zo_keybindstrip/zo_keybindstrip.lua:1059 --
table.sort(anchorTable, GamepadSort)
- libraries/zo_keybindstrip/zo_keybindstrip.lua:1061 --
table.sort(anchorTable, KeyboardSort)
- libraries/zo_pagedlist/zo_pagedlist.lua:49 --
table.sort(self.dataList, function(listEntry1, listEntry2) return self:CompareSortEntries(listEntry1, listEntry2) end)
- libraries/zo_parametricscrolllist/zo_parametricscrolllist.lua:718 --
table.sort(self.dataList, self.sortFunction)
- libraries/zo_scriptprofiler/zo_scriptprofiler.lua:90 --
table.sort(sorted, function(a, b)
return a.excludeTime > b.excludeTime
end)
- libraries/zo_sortfilterlist/gamepad/zo_interactivesortfilterlist_gamepad.lua:509 --
table.sort(scrollData, self.sortFunction)
- pregame/accountlogin/pegi.lua:81 --
table.sort(scrollData, countrySortFunction)
- pregame/accountlogin/keyboard/worldselect.lua:59 --
table.sort(dataList, SortWorlds)
- pregame/charactercreate/gamepad/zo_charactercreateslider_gamepad.lua:94 --
table.sort(colors, SortLightestFirst)
- pregame/charactercreate/gamepad/zo_charactercreate_gamepad.lua:970 --
table.sort(controlData, ControlComparator)
- pregame/charactercreate/keyboard/zo_charactercreate_keyboard.lua:736 --
table.sort(sliderData, SliderComparator)
- pregame/characterselect/zo_characterselect_manager.lua:177 --
table.sort(self.characterDataList, CompareCharacterDataObjects)
- pregame/gamepad/worldselect/worldselectscreen_gamepad.lua:186 --
table.sort(worlds, function(a, b) return a.worldName < b.worldName end)
- pregameandingame/zo_addonmanager/zo_addonmanager.lua:339 --
table.sort(characterNames)
- pregameandingame/zo_addonmanager/zo_addonmanager.lua:476 --
table.sort(addonEntries, self.sortCallback)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:79 --
table.sort(rewardsTable, RewardEntryComparator)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:95 --
table.sort(self.editionRewards, RewardEntryComparator)
- publicallingames/chapterupgrade/chapterupgrade_manager.lua:266 --
table.sort(self.chaperUpgradeDataList, ChapterUpgradeDataSort)
- publicallingames/rewards/rewards_manager.lua:295 --
table.sort(choices, function(...) return self:SortChoiceRewardEntries(...) end)
- publicallingames/tooltip/collectionstooltips.lua:304 --
table.sort(tagStrings[i])
- publicallingames/tooltip/itemtooltips.lua:722 --
table.sort(itemTagStrings[i])