Home
last modified time | relevance | path

Searched refs:InstallName (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DInterfaceFile.h56 InterfaceFileRef(StringRef InstallName) : InstallName(InstallName) {} in InterfaceFileRef() argument
58 InterfaceFileRef(StringRef InstallName, const TargetList Targets) in InterfaceFileRef() argument
59 : InstallName(InstallName), Targets(std::move(Targets)) {} in InterfaceFileRef()
61 StringRef getInstallName() const { return InstallName; }; in getInstallName()
84 return std::tie(InstallName, Targets) == std::tie(O.InstallName, O.Targets);
88 return std::tie(InstallName, Targets) != std::tie(O.InstallName, O.Targets);
92 return std::tie(InstallName, Targets) < std::tie(O.InstallName, O.Targets);
96 std::string InstallName;
181 InstallName = std::string(InstallName_); in setInstallName()
185 StringRef getInstallName() const { return InstallName; } in getInstallName()
[all …]
H A DRecordsSlice.h148 StringRef InstallName; member
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp26 void InterfaceFile::addAllowableClient(StringRef InstallName, in addAllowableClient() argument
28 if (InstallName.empty()) in addAllowableClient()
30 auto Client = addEntry(AllowableClients, InstallName); in addAllowableClient()
34 void InterfaceFile::addReexportedLibrary(StringRef InstallName, in addReexportedLibrary() argument
36 if (InstallName.empty()) in addReexportedLibrary()
38 auto Lib = addEntry(ReexportedLibraries, InstallName); in addReexportedLibrary()
88 return LHS->InstallName < RHS->InstallName; in addDocument()
360 setInstallName(BA.InstallName); in setFromBinaryAttrs()
390 if (InstallName != O.InstallName) in operator ==()
H A DRecordsSlice.cpp304 createInterfaceFile(const Records &Slices, StringRef InstallName) { in createInterfaceFile() argument
311 if (BA.InstallName != InstallName) in createInterfaceFile()
320 File->setInstallName(InstallName); in createInterfaceFile()
326 if (BA.InstallName != InstallName) in createInterfaceFile()
344 auto Name = S->getBinaryAttrs().InstallName; in convertToInterfaceFile()
H A DTextStub.cpp406 InstallName = File->getInstallName(); in NormalizedTBD()
581 File->setInstallName(InstallName); in denormalize()
699 StringRef InstallName; member
775 InstallName = File->getInstallName(); in NormalizedTBD_V4()
870 File->setInstallName(InstallName); in denormalize()
945 StringRef InstallName; member
995 IO.mapRequired("install-name", Keys->InstallName); in mapKeysToValues()
1025 IO.mapRequired("install-name", Keys->InstallName); in mapKeysToValuesV4()
H A DTextStubV5.cpp96 InstallName, enumerator
367 const Array *Section = File->getArray(Keys[TBDKey::InstallName]); in getNameSection()
369 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::InstallName)); in getNameSection()
375 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::InstallName)); in getNameSection()
946 if (!insertNonEmptyValues(Library, TBDKey::InstallName, std::move(Name))) in serializeIF()
947 return make_error<JSONStubError>(getSerializeErrorMsg(TBDKey::InstallName)); in serializeIF()
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DLibrary.cpp15 StringRef Library::getFrameworkNameFromInstallName(StringRef InstallName) { in getFrameworkNameFromInstallName() argument
16 assert(InstallName.contains(".framework") && "expected a framework"); in getFrameworkNameFromInstallName()
18 Rule.match(InstallName, &Match); in getFrameworkNameFromInstallName()
H A DFrontend.cpp166 std::string findLibrary(StringRef InstallName, FileManager &FM, in findLibrary() argument
185 const StringRef Filename = sys::path::filename(InstallName); in findLibrary()
186 const bool IsFramework = sys::path::parent_path(InstallName) in findLibrary()
198 bool IsEmbeddedDylib = (sys::path::extension(InstallName) == ".dylib") && in findLibrary()
199 InstallName.contains(".framework/"); in findLibrary()
212 sys::path::append(FullPath, InstallName); in findLibrary()
H A DDylibVerifier.cpp864 if (ProvidedBA.InstallName != DylibBA.InstallName) { in verifyBinaryAttrs()
866 << ProvidedBA.InstallName << DylibBA.InstallName; in verifyBinaryAttrs()
973 if (!ProvidedBA.InstallName.ends_with("_asan")) { in verifyBinaryAttrs()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DTapiUniversal.h61 return std::string(Parent->Libraries[Index].InstallName); in getInstallName()
114 StringRef InstallName; member
/freebsd/contrib/llvm-project/llvm/tools/llvm-tapi-diff/
H A DDiffEngine.h
H A DDiffEngine.cpp
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DLibrary.h29 static StringRef getFrameworkNameFromInstallName(StringRef InstallName);
H A DContext.h96 std::string findLibrary(StringRef InstallName, FileManager &FM,
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp236 StringRef InstallName = getPayloadString(LC); in processLoadCommands()
238 MachOConfig.InstallNamesToUpdate.lookup(InstallName); in processLoadCommands()
228 StringRef InstallName = getPayloadString(LC); processLoadCommands() local
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp172 BA.InstallName = Slice.copyString(LCI.Ptr + DLLC.dylib.name); in readMachOHeader()