Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWindowsResource.cpp69 Expected<ResourceEntryRef> WindowsResource::getHeadEntry() { in getHeadEntry()
73 return ResourceEntryRef::create(BinaryStreamRef(BBS), this); in getHeadEntry()
76 ResourceEntryRef::ResourceEntryRef(BinaryStreamRef Ref, in ResourceEntryRef() function in llvm::object::ResourceEntryRef
80 Expected<ResourceEntryRef>
81 ResourceEntryRef::create(BinaryStreamRef BSR, const WindowsResource *Owner) { in create()
82 auto Ref = ResourceEntryRef(BSR, Owner); in create()
88 Error ResourceEntryRef::moveNext(bool &End) { in moveNext()
116 Error ResourceEntryRef::loadNext() { in loadNext()
182 const ResourceEntryRef &Entry, StringRef File1, StringRef File2) { in makeDuplicateResourceError()
313 const ResourceEntryRef &Entry) const { in shouldIgnoreDuplicate()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp191 ResourceEntryRef Entry = error(RF->getHeadEntry()); in main()