Home
last modified time | relevance | path

Searched refs:reexportedLibraries (Results 1 – 11 of 11) sorted by relevance

/llvm-project/llvm/unittests/TextAPI/
H A DTextStubV5Tests.cpp232 EXPECT_EQ(2U, File->reexportedLibraries().size()); in TEST()
233 EXPECT_EQ(ReexportA, File->reexportedLibraries().at(0)); in TEST()
234 EXPECT_EQ(ReexportB, File->reexportedLibraries().at(1)); in TEST()
433 EXPECT_EQ(3U, File->reexportedLibraries().size()); in TEST()
434 EXPECT_EQ(ReexportA, File->reexportedLibraries().at(0)); in TEST()
435 EXPECT_EQ(ReexportB, File->reexportedLibraries().at(1)); in TEST()
436 EXPECT_EQ(ReexportC, File->reexportedLibraries().at(2)); in TEST()
502 EXPECT_EQ(1U, File->reexportedLibraries().size()); in TEST()
503 EXPECT_EQ(Reexport, File->reexportedLibraries().at(0)); in TEST()
1611 EXPECT_EQ(2U, MergedFile->reexportedLibraries() in TEST()
[all...]
H A DTextStubV2Tests.cpp94 EXPECT_EQ(1U, File->reexportedLibraries().size()); in TEST()
95 EXPECT_EQ(reexport, File->reexportedLibraries().front()); in TEST()
162 EXPECT_EQ(0U, File->reexportedLibraries().size()); in TEST()
H A DTextStubV1Tests.cpp93 EXPECT_EQ(1U, File->reexportedLibraries().size()); in TEST()
94 EXPECT_EQ(reexport, File->reexportedLibraries().front()); in TEST()
143 EXPECT_EQ(0U, File->reexportedLibraries().size()); in TEST()
H A DTextStubV3Tests.cpp101 EXPECT_EQ(1U, File->reexportedLibraries().size()); in TEST()
102 EXPECT_EQ(reexport, File->reexportedLibraries().front()); in TEST()
187 EXPECT_EQ(2U, File->reexportedLibraries().size()); in TEST()
188 EXPECT_EQ(Reexports, File->reexportedLibraries()); in TEST()
H A DTextStubV4Tests.cpp109 EXPECT_EQ(1U, File->reexportedLibraries().size()); in TEST()
110 EXPECT_EQ(reexport, File->reexportedLibraries().front()); in TEST()
247 EXPECT_EQ(1U, File->reexportedLibraries().size()); in TEST()
248 EXPECT_EQ(reexport, File->reexportedLibraries().front()); in TEST()
/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp196 for (const auto &Lib : reexportedLibraries()) in merge()
200 for (const auto &Lib : O->reexportedLibraries()) in merge()
265 for (const auto &Lib : reexportedLibraries()) { in remove()
337 for (const auto &Lib : reexportedLibraries()) in extract()
H A DTextStub.cpp426 for (const auto &Library : File->reexportedLibraries()) in NormalizedTBD()
444 for (const auto &Library : File->reexportedLibraries()) in NormalizedTBD()
805 assignTargetsToLibrary(File->reexportedLibraries(), ReexportedLibraries); in NormalizedTBD_V4()
H A DTextStubV5.cpp978 serializeField(TBDKey::Names, File->reexportedLibraries(), ActiveTargets); in serializeIF()
/llvm-project/llvm/tools/llvm-readtapi/
H A DDiffEngine.cpp222 Interface->reexportedLibraries(), Order); in getSingleIF()
381 if (IFLHS->reexportedLibraries() != IFRHS->reexportedLibraries()) in findDifferences()
382 Output.push_back(recordDifferences(IFLHS->reexportedLibraries(), in findDifferences()
383 IFRHS->reexportedLibraries(), in findDifferences()
/llvm-project/llvm/include/llvm/TextAPI/
H A DInterfaceFile.h282 const std::vector<InterfaceFileRef> &reexportedLibraries() const { in reexportedLibraries() function
/llvm-project/lld/MachO/
H A DInputFiles.cpp1972 for (const InterfaceFileRef &intfRef : interface.reexportedLibraries()) { in isExplicitlyLinked()