Lines Matching defs:CurrentSection

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