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.h57 InterfaceFileRef(StringRef InstallName) : InstallName(InstallName) {} in InterfaceFileRef() argument
59 InterfaceFileRef(StringRef InstallName, const TargetList Targets) in InterfaceFileRef() argument
60 : InstallName(InstallName), Targets(std::move(Targets)) {} in InterfaceFileRef()
62 StringRef getInstallName() const { return InstallName; }; in getInstallName()
85 return std::tie(InstallName, Targets) == std::tie(O.InstallName, O.Targets);
89 return std::tie(InstallName, Targets) != std::tie(O.InstallName, O.Targets);
93 return std::tie(InstallName, Targets) < std::tie(O.InstallName, O.Targets);
97 std::string InstallName;
182 InstallName = std::string(InstallName_); in setInstallName()
186 StringRef getInstallName() const { return InstallName; } in getInstallName()
[all …]
H A DRecordsSlice.h153 StringRef InstallName; member
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DInterfaceFile.cpp24 void InterfaceFile::addAllowableClient(StringRef InstallName, in addAllowableClient() argument
26 if (InstallName.empty()) in addAllowableClient()
28 auto Client = addEntry(AllowableClients, InstallName); in addAllowableClient()
32 void InterfaceFile::addReexportedLibrary(StringRef InstallName, in addReexportedLibrary() argument
34 if (InstallName.empty()) in addReexportedLibrary()
36 auto Lib = addEntry(ReexportedLibraries, InstallName); in addReexportedLibrary()
83 return LHS->InstallName < RHS->InstallName; in addDocument()
86 (*Pos)->InstallName != Document->InstallName) && in addDocument()
362 setInstallName(BA.InstallName); in setFromBinaryAttrs()
392 if (InstallName != O.InstallName) in operator ==()
H A DRecordsSlice.cpp305 createInterfaceFile(const Records &Slices, StringRef InstallName) { in createInterfaceFile() argument
312 if (BA.InstallName != InstallName) in createInterfaceFile()
321 File->setInstallName(InstallName); in createInterfaceFile()
327 if (BA.InstallName != InstallName) in createInterfaceFile()
345 auto Name = S->getBinaryAttrs().InstallName; in convertToInterfaceFile()
H A DTextStub.cpp405 InstallName = File->getInstallName(); in NormalizedTBD()
580 File->setInstallName(InstallName); in denormalize()
698 StringRef InstallName; member
774 InstallName = File->getInstallName(); in NormalizedTBD_V4()
869 File->setInstallName(InstallName); in denormalize()
944 StringRef InstallName; member
994 IO.mapRequired("install-name", Keys->InstallName); in mapKeysToValues()
1024 IO.mapRequired("install-name", Keys->InstallName); in mapKeysToValuesV4()
H A DTextStubV5.cpp123 InstallName, enumerator
394 const Array *Section = File->getArray(Keys[TBDKey::InstallName]); in getNameSection()
396 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::InstallName)); in getNameSection()
402 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::InstallName)); in getNameSection()
997 if (!insertNonEmptyValues(Library, TBDKey::InstallName, std::move(Name))) in serializeIF()
998 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.cpp165 std::string findLibrary(StringRef InstallName, FileManager &FM, in findLibrary() argument
184 const StringRef Filename = sys::path::filename(InstallName); in findLibrary()
185 const bool IsFramework = sys::path::parent_path(InstallName) in findLibrary()
197 bool IsEmbeddedDylib = (sys::path::extension(InstallName) == ".dylib") && in findLibrary()
198 InstallName.contains(".framework/"); in findLibrary()
211 sys::path::append(FullPath, InstallName); in findLibrary()
H A DDylibVerifier.cpp882 if (ProvidedBA.InstallName != DylibBA.InstallName) { in verifyBinaryAttrs()
884 << ProvidedBA.InstallName << DylibBA.InstallName; in verifyBinaryAttrs()
993 if (!ProvidedBA.InstallName.ends_with("_asan")) { in verifyBinaryAttrs()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DTapiUniversal.h62 return std::string(Parent->Libraries[Index].InstallName); in getInstallName()
116 const 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.cpp255 StringRef InstallName = getPayloadString(LC); in processLoadCommands() local
257 MachOConfig.InstallNamesToUpdate.lookup(InstallName); in processLoadCommands()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp171 BA.InstallName = Slice.copyString(LCI.Ptr + DLLC.dylib.name); in readMachOHeader()