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

/freebsd-current/contrib/llvm-project/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"
227 Expected<StringRef> SectionNameOrErr
[all...]
H A DLVCodeViewReader.cpp466 Expected<StringRef> SectionNameOrErr = Section.getName(); local
467 if (!SectionNameOrErr)
468 return SectionNameOrErr.takeError();
469 if (*SectionNameOrErr == ".debug$P") {
863 Expected<StringRef> SectionNameOrErr = Section.getName(); local
864 if (!SectionNameOrErr)
865 return SectionNameOrErr.takeError();
868 if (*SectionNameOrErr == ".debug$T" || *SectionNameOrErr == ".debug$P")
869 if (Error Err = traverseTypeSection(*SectionNameOrErr, Sectio
877 Expected<StringRef> SectionNameOrErr = Section.getName(); local
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFObjectFile.h976 Expected<StringRef> SectionNameOrErr = getSectionName(Sec); local
977 if (!SectionNameOrErr) {
979 consumeError(SectionNameOrErr.takeError());
982 StringRef SectionName = SectionNameOrErr.get();
/freebsd-current/contrib/llvm-project/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.cpp2062 Expected<StringRef> SectionNameOrErr = getSectionName(Sec); local
2063 if (!SectionNameOrErr) {
2065 consumeError(SectionNameOrErr.takeError());
2068 StringRef SectionName = SectionNameOrErr.get();

Completed in 92 milliseconds