Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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;
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DWindowsResource.cpp67 Expected<ResourceEntryRef> WindowsResource::getHeadEntry() { in getHeadEntry()
71 return ResourceEntryRef::create(BinaryStreamRef(BBS), this); in getHeadEntry()
74 ResourceEntryRef::ResourceEntryRef(BinaryStreamRef Ref, in ResourceEntryRef() function in llvm::object::ResourceEntryRef
78 Expected<ResourceEntryRef>
79 ResourceEntryRef::create(BinaryStreamRef BSR, const WindowsResource *Owner) { in create()
80 auto Ref = ResourceEntryRef(BSR, Owner); in create()
86 Error ResourceEntryRef::moveNext(bool &End) { in moveNext()
114 Error ResourceEntryRef::loadNext() { in loadNext()
180 const ResourceEntryRef &Entry, StringRef File1, StringRef File2) { in makeDuplicateResourceError()
311 const ResourceEntryRef &Entry) const { in shouldIgnoreDuplicate()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp193 ResourceEntryRef Entry = error(RF->getHeadEntry()); in main()