Home
last modified time | relevance | path

Searched refs:InterfaceFile (Results 1 – 25 of 35) sorted by relevance

12

/external/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
DInterfaceFile.cpp48 void InterfaceFile::addAllowableClient(StringRef InstallName, in addAllowableClient()
54 void InterfaceFile::addReexportedLibrary(StringRef InstallName, in addReexportedLibrary()
60 void InterfaceFile::addParentUmbrella(const Target &Target_, StringRef Parent) { in addParentUmbrella()
74 void InterfaceFile::addUUID(const Target &Target_, StringRef UUID) { in addUUID()
88 void InterfaceFile::addUUID(const Target &Target, uint8_t UUID[16]) { in addUUID()
99 void InterfaceFile::addTarget(const Target &Target) { in addTarget()
103 InterfaceFile::const_filtered_target_range
104 InterfaceFile::targets(ArchitectureSet Archs) const { in targets()
111 void InterfaceFile::addSymbol(SymbolKind Kind, StringRef Name, in addSymbol()
DTextStub.cpp430 template <> struct MappingTraits<const InterfaceFile *> {
433 NormalizedTBD(IO &IO, const InterfaceFile *&File) { in NormalizedTBD()
612 const InterfaceFile *denormalize(IO &IO) { in denormalize()
616 auto *File = new InterfaceFile; in denormalize()
761 static void mapping(IO &IO, const InterfaceFile *&File) { in mapping()
804 NormalizedTBD_V4(IO &IO, const InterfaceFile *&File) { in NormalizedTBD_V4()
846 InterfaceFile::const_filtered_symbol_range Symbols, in NormalizedTBD_V4()
907 const InterfaceFile *denormalize(IO &IO) { in denormalize()
911 auto *File = new InterfaceFile; in denormalize()
1021 const InterfaceFile *&File) { in mapKeysToValues()
[all …]
/external/llvm-project/llvm/lib/TextAPI/MachO/
DInterfaceFile.cpp49 void InterfaceFile::addAllowableClient(StringRef InstallName, in addAllowableClient()
55 void InterfaceFile::addReexportedLibrary(StringRef InstallName, in addReexportedLibrary()
61 void InterfaceFile::addParentUmbrella(const Target &Target_, StringRef Parent) { in addParentUmbrella()
75 void InterfaceFile::addUUID(const Target &Target_, StringRef UUID) { in addUUID()
89 void InterfaceFile::addUUID(const Target &Target, uint8_t UUID[16]) { in addUUID()
100 void InterfaceFile::addTarget(const Target &Target) { in addTarget()
104 InterfaceFile::const_filtered_target_range
105 InterfaceFile::targets(ArchitectureSet Archs) const { in targets()
112 void InterfaceFile::addSymbol(SymbolKind Kind, StringRef Name, in addSymbol()
DTextStub.cpp435 template <> struct MappingTraits<const InterfaceFile *> {
438 NormalizedTBD(IO &IO, const InterfaceFile *&File) { in NormalizedTBD()
615 const InterfaceFile *denormalize(IO &IO) { in denormalize()
619 auto *File = new InterfaceFile; in denormalize()
764 static void mapping(IO &IO, const InterfaceFile *&File) { in mapping()
807 NormalizedTBD_V4(IO &IO, const InterfaceFile *&File) { in NormalizedTBD_V4()
849 InterfaceFile::const_filtered_symbol_range Symbols, in NormalizedTBD_V4()
910 const InterfaceFile *denormalize(IO &IO) { in denormalize()
914 auto *File = new InterfaceFile; in denormalize()
1025 const InterfaceFile *&File) { in mapKeysToValues()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/
DTextAPIWriter.h17 class InterfaceFile; variable
23 static Error writeToStream(raw_ostream &os, const InterfaceFile &);
DTextAPIReader.h18 class InterfaceFile; variable
22 static Expected<std::unique_ptr<InterfaceFile>>
/external/llvm-project/llvm/include/llvm/TextAPI/MachO/
DTextAPIReader.h20 class InterfaceFile; variable
24 static Expected<std::unique_ptr<InterfaceFile>>
DTextAPIWriter.h19 class InterfaceFile; variable
25 static Error writeToStream(raw_ostream &os, const InterfaceFile &);
DInterfaceFile.h156 class InterfaceFile {
339 void addDocument(std::shared_ptr<InterfaceFile> &&Document) {
346 const std::vector<std::shared_ptr<InterfaceFile>> &documents() const {
425 std::vector<std::shared_ptr<InterfaceFile>> Documents;
/external/llvm-project/llvm/unittests/TextAPI/
DTextStubHelpers.h27 using TBDFile = std::unique_ptr<MachO::InterfaceFile>;
28 using TBDReexportFile = std::shared_ptr<MachO::InterfaceFile>;
DTextStubV3Tests.cpp265 InterfaceFile File; in TEST()
330 InterfaceFile File; in TEST()
358 InterfaceFile Document; in TEST()
369 File.addDocument(std::make_shared<InterfaceFile>(std::move(Document))); in TEST()
/external/llvm-project/llvm/lib/Object/
DTapiUniversal.cpp25 Expected<std::unique_ptr<InterfaceFile>> Result = TextAPIReader::get(Source); in TapiUniversal()
41 for (const std::shared_ptr<InterfaceFile> &File : ParsedFile->documents()) in TapiUniversal()
DTapiFile.cpp41 TapiFile::TapiFile(MemoryBufferRef Source, const InterfaceFile &interface, in TapiFile()
/external/llvm-project/llvm/tools/dsymutil/
DDwarfLinkerForBinary.cpp124 StringRef InterfaceFile = I.second; in copySwiftInterfaces() local
127 sys::path::append(InputPath, Options.PrependPath, InterfaceFile); in copySwiftInterfaces()
128 InterfaceFile = InputPath; in copySwiftInterfaces()
133 outs() << "copy parseable Swift interface " << InterfaceFile << " -> " in copySwiftInterfaces()
137 if ((EC = sys::fs::copy_file(InterfaceFile, Path.str()))) in copySwiftInterfaces()
138 warn(Twine("cannot copy parseable Swift interface ") + InterfaceFile + in copySwiftInterfaces()
/external/llvm-project/lld/MachO/
DInputFiles.h79 InputFile(Kind kind, const llvm::MachO::InterfaceFile &interface) in InputFile()
127 explicit DylibFile(const llvm::MachO::InterfaceFile &interface,
DInputFiles.cpp465 const InterfaceFile *currentTopLevelTapi = nullptr;
479 for (InterfaceFile &child : in loadReexport()
548 DylibFile::DylibFile(const InterfaceFile &interface, DylibFile *umbrella) in DylibFile()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/
DCMakeLists.txt6 MachO/InterfaceFile.cpp
/external/llvm-project/llvm/utils/gn/secondary/llvm/lib/TextAPI/
DBUILD.gn11 "MachO/InterfaceFile.cpp",
/external/llvm-project/llvm/lib/TextAPI/
DCMakeLists.txt4 MachO/InterfaceFile.cpp
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DTapiFile.h28 TapiFile(MemoryBufferRef Source, const MachO::InterfaceFile &interface,
DTapiUniversal.h102 std::unique_ptr<MachO::InterfaceFile> ParsedFile;
/external/llvm-project/llvm/include/llvm/Object/
DTapiFile.h28 TapiFile(MemoryBufferRef Source, const MachO::InterfaceFile &interface,
DTapiUniversal.h114 std::unique_ptr<MachO::InterfaceFile> ParsedFile;
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DFile.h408 llvm::Expected<std::unique_ptr<llvm::MachO::InterfaceFile>> result = in doParse()
413 std::unique_ptr<llvm::MachO::InterfaceFile> interface{std::move(*result)}; in doParse()
418 std::error_code loadFromInterface(llvm::MachO::InterfaceFile &interface) { in loadFromInterface()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DTapiFile.cpp41 TapiFile::TapiFile(MemoryBufferRef Source, const InterfaceFile &interface, in TapiFile()

12