HomeSort by: relevance | last modified time | path
    Searched refs:SectionOrErr (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
RemarkLinker.cpp 104 Expected<Optional<StringRef>> SectionOrErr = getRemarksSectionContents(Obj);
105 if (!SectionOrErr)
106 return SectionOrErr.takeError();
108 if (Optional<StringRef> Section = *SectionOrErr)
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFI386.h 52 auto SectionOrErr = Symbol->getSection();
53 if (!SectionOrErr)
54 return SectionOrErr.takeError();
55 auto Section = *SectionOrErr;
RuntimeDyldCOFFThumb.h 74 auto SectionOrErr = Symbol->getSection();
75 if (!SectionOrErr)
76 return SectionOrErr.takeError();
77 auto Section = *SectionOrErr;
RuntimeDyldCOFFAArch64.h 156 auto SectionOrErr = Symbol->getSection();
157 if (!SectionOrErr)
158 return SectionOrErr.takeError();
159 auto Section = *SectionOrErr;
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachODebugMapParser.cpp 571 Expected<section_iterator> SectionOrErr = Sym.getSection();
572 if (!SectionOrErr) {
574 consumeError(SectionOrErr.takeError());
577 Section = *SectionOrErr;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELF.h 1135 Expected<const Elf_Shdr *> SectionOrErr =
1137 if (!SectionOrErr)
1138 return SectionOrErr.takeError();
1139 return getStringTable(**SectionOrErr);
ELFObjectFile.h 587 Expected<const Elf_Shdr *> SectionOrErr =
589 if (!SectionOrErr)
590 return SectionOrErr.takeError();
591 const Elf_Shdr *Section = *SectionOrErr;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 1226 auto SectionOrErr = Symbol->getSection();
1227 if (!SectionOrErr) {
1230 logAllUnhandledErrors(SectionOrErr.takeError(), OS);
1234 section_iterator si = *SectionOrErr;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOObjectFile.cpp 298 auto SectionOrErr = getStructOrErr<Section>(Obj, Sec);
299 if (!SectionOrErr)
300 return SectionOrErr.takeError();
301 Section s = SectionOrErr.get();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 5809 Expected<const Elf_Shdr *> SectionOrErr =
5811 if (!SectionOrErr) {
5814 (*TargetOrErr).Name + "': " + toString(SectionOrErr.takeError()));
5815 } else if (*SectionOrErr != FunctionSec) {
5820 FunctionSec = *SectionOrErr;

Completed in 57 milliseconds