Searched refs:SectionNameOrErr (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp158 Expected<StringRef> SectionNameOrErr = Section.getName(); local
159 if (!SectionNameOrErr) {
160 consumeError(SectionNameOrErr.takeError());
163 if ((*SectionNameOrErr).equals(".text") ||
164 (*SectionNameOrErr).equals(".code"))
176 Expected<StringRef> SectionNameOrErr = Section.getName();
177 if (!SectionNameOrErr)
178 consumeError(SectionNameOrErr.takeError());
180 << " Name: " << *SectionNameOrErr << "\n"
369 Expected<StringRef> SectionNameOrErr
[all...]
/openbsd-current/gnu/llvm/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp112 Expected<StringRef> SectionNameOrErr = S.getName(); local
113 if (!SectionNameOrErr) {
114 consumeError(SectionNameOrErr.takeError());
119 if ((*SectionNameOrErr) != ".debug$S")
/openbsd-current/gnu/llvm/llvm/include/llvm/Object/
H A DELFObjectFile.h951 Expected<StringRef> SectionNameOrErr = getSectionName(Sec); local
952 if (!SectionNameOrErr) {
954 consumeError(SectionNameOrErr.takeError());
957 StringRef SectionName = SectionNameOrErr.get();
/openbsd-current/gnu/llvm/llvm/lib/Object/
H A DCOFFObjectFile.cpp332 Expected<StringRef> SectionNameOrErr = getSectionName(Ref); local
333 if (!SectionNameOrErr) {
335 consumeError(SectionNameOrErr.takeError());
338 StringRef SectionName = SectionNameOrErr.get();
H A DMachOObjectFile.cpp2055 Expected<StringRef> SectionNameOrErr = getSectionName(Sec); local
2056 if (!SectionNameOrErr) {
2058 consumeError(SectionNameOrErr.takeError());
2061 StringRef SectionName = SectionNameOrErr.get();

Completed in 221 milliseconds