Lines Matching refs:CurrentSection

796           UmbrellaSection CurrentSection;  in NormalizedTBD_V4()  local
797 CurrentSection.Targets.insert(CurrentSection.Targets.begin(), in NormalizedTBD_V4()
799 CurrentSection.Umbrella = it.first; in NormalizedTBD_V4()
800 ParentUmbrellas.emplace_back(std::move(CurrentSection)); in NormalizedTBD_V4()
818 SymbolSection CurrentSection; in NormalizedTBD_V4() local
819 CurrentSection.Targets.insert(CurrentSection.Targets.begin(), in NormalizedTBD_V4()
830 CurrentSection.WeakSymbols.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
832 CurrentSection.TlvSymbols.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
834 CurrentSection.Symbols.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
837 CurrentSection.Classes.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
840 CurrentSection.ClassEHs.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
843 CurrentSection.Ivars.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
847 sort(CurrentSection.Symbols); in NormalizedTBD_V4()
848 sort(CurrentSection.Classes); in NormalizedTBD_V4()
849 sort(CurrentSection.ClassEHs); in NormalizedTBD_V4()
850 sort(CurrentSection.Ivars); in NormalizedTBD_V4()
851 sort(CurrentSection.WeakSymbols); in NormalizedTBD_V4()
852 sort(CurrentSection.TlvSymbols); in NormalizedTBD_V4()
853 CurrentSections.emplace_back(std::move(CurrentSection)); in NormalizedTBD_V4()
874 for (const auto &CurrentSection : ParentUmbrellas) in denormalize() local
875 for (const auto &target : CurrentSection.Targets) in denormalize()
876 File->addParentUmbrella(target, CurrentSection.Umbrella); in denormalize()
883 for (const auto &CurrentSection : AllowableClients) { in denormalize() local
884 for (const auto &lib : CurrentSection.Values) in denormalize()
885 for (const auto &Target : CurrentSection.Targets) in denormalize()
889 for (const auto &CurrentSection : ReexportedLibraries) { in denormalize() local
890 for (const auto &Lib : CurrentSection.Values) in denormalize()
891 for (const auto &Target : CurrentSection.Targets) in denormalize()
902 for (const auto &CurrentSection : CurrentSections) { in denormalize() local
903 for (auto &sym : CurrentSection.Symbols) in denormalize()
905 CurrentSection.Targets, Flag); in denormalize()
907 for (auto &sym : CurrentSection.Classes) in denormalize()
909 CurrentSection.Targets, Flag); in denormalize()
911 for (auto &sym : CurrentSection.ClassEHs) in denormalize()
913 CurrentSection.Targets, Flag); in denormalize()
915 for (auto &sym : CurrentSection.Ivars) in denormalize()
917 CurrentSection.Targets, Flag); in denormalize()
923 for (auto &sym : CurrentSection.WeakSymbols) { in denormalize()
925 CurrentSection.Targets, Flag | SymFlag); in denormalize()
928 for (auto &sym : CurrentSection.TlvSymbols) in denormalize()
930 CurrentSection.Targets, in denormalize()
969 MetadataSection CurrentSection; in assignTargetsToLibrary() local
970 CurrentSection.Targets.insert(CurrentSection.Targets.begin(), in assignTargetsToLibrary()
977 CurrentSection.Values.emplace_back(it.first->getInstallName()); in assignTargetsToLibrary()
979 llvm::sort(CurrentSection.Values); in assignTargetsToLibrary()
980 Section.emplace_back(std::move(CurrentSection)); in assignTargetsToLibrary()