OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ResourceEntryRef
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
WindowsResource.h
94
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);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
WindowsResource.cpp
59
Expected<
ResourceEntryRef
> WindowsResource::getHeadEntry() {
63
return
ResourceEntryRef
::create(BinaryStreamRef(BBS), this);
66
ResourceEntryRef
::
ResourceEntryRef
(BinaryStreamRef Ref,
70
Expected<
ResourceEntryRef
>
71
ResourceEntryRef
::create(BinaryStreamRef BSR, const WindowsResource *Owner) {
72
auto Ref =
ResourceEntryRef
(BSR, Owner);
78
Error
ResourceEntryRef
::moveNext(bool &End) {
106
Error
ResourceEntryRef
::loadNext() {
148
ResourceEntryRef
Entry = EntryOrErr.get()
[
all
...]
Completed in 992 milliseconds