HomeSort by relevance Sort by last modified time
    Searched refs:SectionOrErr (Results 1 - 4 of 4) sorted by null

  /external/llvm/tools/dsymutil/
MachODebugMapParser.cpp 449 ErrorOr<section_iterator> SectionOrErr = Sym.getSection();
450 if (!SectionOrErr)
452 Section = *SectionOrErr;
  /external/llvm/include/llvm/Object/
ELF.h 508 ErrorOr<const Elf_Shdr *> SectionOrErr = getSection(Sec.sh_link);
509 if (std::error_code EC = SectionOrErr.getError())
511 return getStringTable(*SectionOrErr);
ELFObjectFile.h 407 ErrorOr<const Elf_Shdr *> SectionOrErr =
409 if (std::error_code EC = SectionOrErr.getError())
411 const Elf_Shdr *Section = *SectionOrErr;
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 880 ErrorOr<section_iterator> SectionOrErr = Symbol.getSection();
881 error(SectionOrErr.getError());
882 section_iterator SecI = *SectionOrErr;
    [all...]

Completed in 57 milliseconds