Home
last modified time | relevance | path

Searched refs:InterfaceFileRef (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/TextAPI/
H A DInterfaceFile.h77 class InterfaceFileRef {
79 InterfaceFileRef() = default;
81 InterfaceFileRef(StringRef InstallName) : InstallName(InstallName) {} in InterfaceFileRef() function
83 InterfaceFileRef(StringRef InstallName, const TargetList Targets) in InterfaceFileRef() function
104 bool operator==(const InterfaceFileRef &O) const {
108 bool operator!=(const InterfaceFileRef &O) const {
112 bool operator<(const InterfaceFileRef &O) const {
297 const std::vector<InterfaceFileRef> &allowableClients() const {
310 const std::vector<InterfaceFileRef> &reexportedLibraries() const {
431 std::vector<InterfaceFileRef> AllowableClients;
[all …]
/llvm-project-15.0.7/llvm/lib/TextAPI/
H A DInterfaceFile.cpp23 auto I = partition_point(Container, [=](const InterfaceFileRef &O) { in addEntry()
45 void InterfaceFileRef::addTarget(const Target &Target) { in addTarget()
H A DTextStub.cpp994 void assignTargetsToLibrary(const std::vector<InterfaceFileRef> &Libraries, in assignTargetsToLibrary()
997 std::map<const InterfaceFileRef *, TargetList> valueToTargetList; in assignTargetsToLibrary()
/llvm-project-15.0.7/llvm/unittests/TextAPI/
H A DTextStubV3Tests.cpp99 InterfaceFileRef client("clientA", Targets); in TEST()
100 InterfaceFileRef reexport("/usr/lib/libfoo.dylib", Targets); in TEST()
189 InterfaceFileRef Client("clientA", Targets); in TEST()
190 const std::vector<InterfaceFileRef> Reexports = { in TEST()
191 InterfaceFileRef("/usr/lib/libfoo.dylib", Targets), in TEST()
192 InterfaceFileRef("TestInline.dylib", Targets)}; in TEST()
H A DTextStubV1Tests.cpp90 InterfaceFileRef client("clientA", Targets); in TEST()
91 InterfaceFileRef reexport("/usr/lib/libfoo.dylib", Targets); in TEST()
H A DTextStubV2Tests.cpp91 InterfaceFileRef client("clientA", Targets); in TEST()
92 InterfaceFileRef reexport("/usr/lib/libfoo.dylib", Targets); in TEST()
H A DTextStubV4Tests.cpp108 InterfaceFileRef client("ClientA", Targets); in TEST()
109 InterfaceFileRef reexport("/System/Library/Frameworks/A.framework/A", in TEST()
254 InterfaceFileRef reexport("/System/Library/Frameworks/A.framework/A", in TEST()
/llvm-project-15.0.7/llvm/tools/llvm-tapi-diff/
H A DDiffEngine.cpp138 DiffOutput getSingleAttrDiff(const std::vector<InterfaceFileRef> &IRefVec, in getSingleAttrDiff()
232 void findAndAddDiff(const std::vector<InterfaceFileRef> &CollectedIRefVec, in findAndAddDiff()
233 const std::vector<InterfaceFileRef> &LookupIRefVec, in findAndAddDiff()
/llvm-project-15.0.7/lld/MachO/
H A DInputFiles.cpp1981 for (const InterfaceFileRef &intfRef : interface.reexportedLibraries()) { in parseReexports()