• Home
  • Raw
  • Download

Lines Matching refs:CurrentSection

836           UmbrellaSection CurrentSection;  in NormalizedTBD_V4()  local
837 CurrentSection.Targets.insert(CurrentSection.Targets.begin(), in NormalizedTBD_V4()
839 CurrentSection.Umbrella = it.first; in NormalizedTBD_V4()
840 ParentUmbrellas.emplace_back(std::move(CurrentSection)); in NormalizedTBD_V4()
861 SymbolSection CurrentSection; in NormalizedTBD_V4() local
862 CurrentSection.Targets.insert(CurrentSection.Targets.begin(), in NormalizedTBD_V4()
873 CurrentSection.WeakSymbols.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
875 CurrentSection.TlvSymbols.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
877 CurrentSection.Symbols.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
880 CurrentSection.Classes.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
883 CurrentSection.ClassEHs.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
886 CurrentSection.Ivars.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
890 sort(CurrentSection.Symbols); in NormalizedTBD_V4()
891 sort(CurrentSection.Classes); in NormalizedTBD_V4()
892 sort(CurrentSection.ClassEHs); in NormalizedTBD_V4()
893 sort(CurrentSection.Ivars); in NormalizedTBD_V4()
894 sort(CurrentSection.WeakSymbols); in NormalizedTBD_V4()
895 sort(CurrentSection.TlvSymbols); in NormalizedTBD_V4()
896 CurrentSections.emplace_back(std::move(CurrentSection)); in NormalizedTBD_V4()
924 for (const auto &CurrentSection : ParentUmbrellas) in denormalize() local
925 for (const auto &target : CurrentSection.Targets) in denormalize()
926 File->addParentUmbrella(target, CurrentSection.Umbrella); in denormalize()
932 for (const auto &CurrentSection : AllowableClients) { in denormalize() local
933 for (const auto &lib : CurrentSection.Values) in denormalize()
934 for (const auto &Target : CurrentSection.Targets) in denormalize()
938 for (const auto &CurrentSection : ReexportedLibraries) { in denormalize() local
939 for (const auto &Lib : CurrentSection.Values) in denormalize()
940 for (const auto &Target : CurrentSection.Targets) in denormalize()
946 for (const auto &CurrentSection : CurrentSections) { in denormalize() local
947 for (auto &sym : CurrentSection.Symbols) in denormalize()
949 CurrentSection.Targets, Flag); in denormalize()
951 for (auto &sym : CurrentSection.Classes) in denormalize()
953 CurrentSection.Targets); in denormalize()
955 for (auto &sym : CurrentSection.ClassEHs) in denormalize()
957 CurrentSection.Targets); in denormalize()
959 for (auto &sym : CurrentSection.Ivars) in denormalize()
961 CurrentSection.Targets); in denormalize()
963 for (auto &sym : CurrentSection.WeakSymbols) in denormalize()
965 CurrentSection.Targets, SymbolFlags::WeakDefined); in denormalize()
967 for (auto &sym : CurrentSection.TlvSymbols) in denormalize()
969 CurrentSection.Targets, in denormalize()
1008 MetadataSection CurrentSection; in assignTargetsToLibrary() local
1009 CurrentSection.Targets.insert(CurrentSection.Targets.begin(), in assignTargetsToLibrary()
1016 CurrentSection.Values.emplace_back(it.first->getInstallName()); in assignTargetsToLibrary()
1018 llvm::sort(CurrentSection.Values); in assignTargetsToLibrary()
1019 Section.emplace_back(std::move(CurrentSection)); in assignTargetsToLibrary()