Home
last modified time | relevance | path

Searched refs:ResourceEntryRef (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DWindowsResource.h98 class ResourceEntryRef {
118 ResourceEntryRef(BinaryStreamRef Ref, const WindowsResource *Owner);
121 static Expected<ResourceEntryRef> create(BinaryStreamRef Ref,
138 Expected<ResourceEntryRef> getHeadEntry();
146 friend class ResourceEntryRef;
201 bool addEntry(const ResourceEntryRef &Entry, uint32_t Origin,
205 TreeNode &addTypeNode(const ResourceEntryRef &Entry,
207 TreeNode &addNameNode(const ResourceEntryRef &Entry,
209 bool addLanguageNode(const ResourceEntryRef &Entry, uint32_t Origin,
248 bool shouldIgnoreDuplicate(const ResourceEntryRef &Entry) const;
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp68 Expected<ResourceEntryRef> WindowsResource::getHeadEntry() { in getHeadEntry()
72 return ResourceEntryRef::create(BinaryStreamRef(BBS), this); in getHeadEntry()
75 ResourceEntryRef::ResourceEntryRef(BinaryStreamRef Ref, in ResourceEntryRef() function in llvm::object::ResourceEntryRef
79 Expected<ResourceEntryRef>
80 ResourceEntryRef::create(BinaryStreamRef BSR, const WindowsResource *Owner) { in create()
81 auto Ref = ResourceEntryRef(BSR, Owner); in create()
87 Error ResourceEntryRef::moveNext(bool &End) { in moveNext()
115 Error ResourceEntryRef::loadNext() { in loadNext()
181 const ResourceEntryRef &Entry, StringRef File1, StringRef File2) { in makeDuplicateResourceError()
312 const ResourceEntryRef &Entry) const { in shouldIgnoreDuplicate()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.h29 void printEntry(const ResourceEntryRef &Ref);
H A DWindowsResourceDumper.cpp54 void Dumper::printEntry(const ResourceEntryRef &Ref) { in printEntry()