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

  /frameworks/compile/mclinker/include/mcld/MC/
MCDataFragment.h 42 typedef RelocationsType::iterator relocation_iterator; typedef in class:mcld::MCDataFragment
63 relocation_iterator relocation_begin() { return m_Relocations.begin(); }
66 relocation_iterator relocation_end() {return m_Relocations.end();}
MCInstFragment.h 44 typedef RelocationsType::iterator relocation_iterator; typedef in class:mcld::MCInstFragment
73 relocation_iterator relocation_begin() { return m_Relocations.begin(); }
76 relocation_iterator relocation_end() {return m_Relocations.end();}
  /external/llvm/include/llvm-c/
Object.h 133 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) {
134 return reinterpret_cast<relocation_iterator*>(SI);
138 wrap(const relocation_iterator *SI) {
140 (const_cast<relocation_iterator*>(SI));
  /external/llvm/include/llvm/Object/
MachO.h 81 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
82 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
ObjectFile.h 130 typedef content_iterator<RelocationRef> relocation_iterator; typedef in namespace:llvm::object
167 relocation_iterator begin_relocations() const;
168 relocation_iterator end_relocations() const;
317 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const = 0;
318 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const = 0;
514 inline relocation_iterator SectionRef::begin_relocations() const {
518 inline relocation_iterator SectionRef::end_relocations() const {
COFF.h 135 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
136 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
ELF.h 558 virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
559 virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
    [all...]
  /external/llvm/lib/Object/
Object.cpp 117 relocation_iterator SI = (*unwrap(Section))->begin_relocations();
118 return wrap(new relocation_iterator(SI));
COFFObjectFile.cpp 394 relocation_iterator COFFObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
402 return relocation_iterator(RelocationRef(ret, this));
405 relocation_iterator COFFObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
416 return relocation_iterator(RelocationRef(ret, this));
MachOObjectFile.cpp 643 relocation_iterator MachOObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
646 return relocation_iterator(RelocationRef(ret, this));
648 relocation_iterator MachOObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
662 return relocation_iterator(RelocationRef(ret, this));
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 149 for (relocation_iterator i = si->begin_relocations(),
222 for (relocation_iterator i = Section.begin_relocations(),
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 209 for (relocation_iterator ri = i->begin_relocations(),
359 for (relocation_iterator ri = si->begin_relocations(),
MachODump.cpp 394 for (relocation_iterator RI = Sections[SectIdx].begin_relocations(),

Completed in 1133 milliseconds