| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | InterfaceFile.h | 57 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 D | RecordsSlice.h | 153 StringRef InstallName; member
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | InterfaceFile.cpp | 24 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 D | RecordsSlice.cpp | 305 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 D | TextStub.cpp | 405 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 D | TextStubV5.cpp | 123 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 D | Library.cpp | 15 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 D | Frontend.cpp | 165 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 D | DylibVerifier.cpp | 882 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 D | TapiUniversal.h | 62 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 D | DiffEngine.h | |
| H A D | DiffEngine.cpp | |
| /freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
| H A D | Library.h | 29 static StringRef getFrameworkNameFromInstallName(StringRef InstallName);
|
| H A D | Context.h | 96 std::string findLibrary(StringRef InstallName, FileManager &FM,
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 255 StringRef InstallName = getPayloadString(LC); in processLoadCommands() local 257 MachOConfig.InstallNamesToUpdate.lookup(InstallName); in processLoadCommands()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
| H A D | DylibReader.cpp | 171 BA.InstallName = Slice.copyString(LCI.Ptr + DLLC.dylib.name); in readMachOHeader()
|