• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/

Lines Matching defs:CurrentSection

833           UmbrellaSection CurrentSection;
834 CurrentSection.Targets.insert(CurrentSection.Targets.begin(),
836 CurrentSection.Umbrella = it.first;
837 ParentUmbrellas.emplace_back(std::move(CurrentSection));
858 SymbolSection CurrentSection;
859 CurrentSection.Targets.insert(CurrentSection.Targets.begin(),
870 CurrentSection.WeakSymbols.emplace_back(Symbol->getName());
872 CurrentSection.TlvSymbols.emplace_back(Symbol->getName());
874 CurrentSection.Symbols.emplace_back(Symbol->getName());
877 CurrentSection.Classes.emplace_back(Symbol->getName());
880 CurrentSection.ClassEHs.emplace_back(Symbol->getName());
883 CurrentSection.Ivars.emplace_back(Symbol->getName());
887 sort(CurrentSection.Symbols);
888 sort(CurrentSection.Classes);
889 sort(CurrentSection.ClassEHs);
890 sort(CurrentSection.Ivars);
891 sort(CurrentSection.WeakSymbols);
892 sort(CurrentSection.TlvSymbols);
893 CurrentSections.emplace_back(std::move(CurrentSection));
921 for (const auto &CurrentSection : ParentUmbrellas)
922 for (const auto &target : CurrentSection.Targets)
923 File->addParentUmbrella(target, CurrentSection.Umbrella);
929 for (const auto &CurrentSection : AllowableClients) {
930 for (const auto &lib : CurrentSection.Values)
931 for (const auto &Target : CurrentSection.Targets)
935 for (const auto &CurrentSection : ReexportedLibraries) {
936 for (const auto &Lib : CurrentSection.Values)
937 for (const auto &Target : CurrentSection.Targets)
943 for (const auto &CurrentSection : CurrentSections) {
944 for (auto &sym : CurrentSection.Symbols)
946 CurrentSection.Targets, Flag);
948 for (auto &sym : CurrentSection.Classes)
950 CurrentSection.Targets);
952 for (auto &sym : CurrentSection.ClassEHs)
954 CurrentSection.Targets);
956 for (auto &sym : CurrentSection.Ivars)
958 CurrentSection.Targets);
960 for (auto &sym : CurrentSection.WeakSymbols)
962 CurrentSection.Targets, SymbolFlags::WeakDefined);
964 for (auto &sym : CurrentSection.TlvSymbols)
966 CurrentSection.Targets,
1005 MetadataSection CurrentSection;
1006 CurrentSection.Targets.insert(CurrentSection.Targets.begin(),
1013 CurrentSection.Values.emplace_back(it.first->getInstallName());
1015 llvm::sort(CurrentSection.Values);
1016 Section.emplace_back(std::move(CurrentSection));