Lines Matching refs:CurrentSection

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