Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DWindowsResource.h94 class ResourceEntryRef {
114 ResourceEntryRef(BinaryStreamRef Ref, const WindowsResource *Owner);
117 static Expected<ResourceEntryRef> create(BinaryStreamRef Ref,
133 Expected<ResourceEntryRef> getHeadEntry();
141 friend class ResourceEntryRef;
194 void addEntry(const ResourceEntryRef &Entry, bool &IsNewTypeString,
196 TreeNode &addTypeNode(const ResourceEntryRef &Entry, bool &IsNewTypeString);
197 TreeNode &addNameNode(const ResourceEntryRef &Entry, bool &IsNewNameString);
198 TreeNode &addLanguageNode(const ResourceEntryRef &Entry);
/freebsd-12.1/contrib/llvm/lib/Object/
H A DWindowsResource.cpp59 Expected<ResourceEntryRef> WindowsResource::getHeadEntry() { in getHeadEntry()
63 return ResourceEntryRef::create(BinaryStreamRef(BBS), this); in getHeadEntry()
66 ResourceEntryRef::ResourceEntryRef(BinaryStreamRef Ref, in ResourceEntryRef() function in llvm::object::ResourceEntryRef
70 Expected<ResourceEntryRef>
71 ResourceEntryRef::create(BinaryStreamRef BSR, const WindowsResource *Owner) { in create()
72 auto Ref = ResourceEntryRef(BSR, Owner); in create()
78 Error ResourceEntryRef::moveNext(bool &End) { in moveNext()
106 Error ResourceEntryRef::loadNext() { in loadNext()
148 ResourceEntryRef Entry = EntryOrErr.get(); in parse()
215 WindowsResourceParser::TreeNode::addTypeNode(const ResourceEntryRef &Entry, in addTypeNode()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.h30 void printEntry(const ResourceEntryRef &Ref);
H A DWindowsResourceDumper.cpp56 void Dumper::printEntry(const ResourceEntryRef &Ref) { in printEntry()