Searched refs:SecI (Results 1 - 4 of 4) sorted by relevance

/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp386 section_iterator SecI(Obj->section_begin());
387 if (!error(Symbol.getSection(SecI)) && SecI != Obj->section_end())
388 error(SecI->getName(SectionName));
H A DELFDumper.cpp568 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(),
570 SecI != SecE; ++SecI) {
573 const Elf_Shdr *Section = &*SecI;
619 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(),
621 SecI != SecE; ++SecI) {
624 if (SecI->sh_type != ELF::SHT_REL && SecI->sh_type != ELF::SHT_RELA)
627 StringRef Name = errorOrDefault(Obj->getSectionName(&*SecI));
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp87 section_iterator SecI(Obj->section_begin());
88 if (std::error_code EC = Sym.getSection(SecI))
91 if (SecI == Obj->section_end()) {
97 if (std::error_code EC = SecI->getAddress(SectionAddress))
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp570 section_iterator SecI = Obj.section_end(); local
571 if (error(SymI->getSection(SecI)))
573 const coff_section *Section = Obj.getCOFFSection(*SecI);

Completed in 87 milliseconds