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

  /external/llvm/include/llvm/Object/
ObjectFile.h 93 /// RelocationRef - This is a value type class that represents a single
95 class RelocationRef {
100 RelocationRef() : OwningObject(NULL) { }
102 RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
104 bool operator==(const RelocationRef &Other) const;
106 error_code getNext(RelocationRef &Result) const;
130 typedef content_iterator<RelocationRef> relocation_iterator;
321 // Same as above for RelocationRef.
322 friend class RelocationRef;
324 RelocationRef &Res) const = 0
    [all...]
MachO.h 85 RelocationRef &Res) const;
COFF.h 139 RelocationRef &Res) const;
ELF.h 562 RelocationRef &Res) const;
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 160 static bool RelocAddressLess(RelocationRef a, RelocationRef b) {
207 std::vector<RelocationRef> Rels;
281 std::vector<RelocationRef>::const_iterator rel_cur = Rels.begin();
282 std::vector<RelocationRef>::const_iterator rel_end = Rels.end();
  /external/llvm/lib/Object/
COFFObjectFile.cpp 402 return relocation_iterator(RelocationRef(ret, this));
416 return relocation_iterator(RelocationRef(ret, this));
666 RelocationRef &Res) const {
669 Res = RelocationRef(Rel, this);
MachOObjectFile.cpp 646 return relocation_iterator(RelocationRef(ret, this));
662 return relocation_iterator(RelocationRef(ret, this));
695 RelocationRef &Res) const {
697 Res = RelocationRef(Rel, this);
    [all...]

Completed in 147 milliseconds