reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
179 bool operator==(const MachORebaseEntry &) const; 202 using rebase_iterator = content_iterator<MachORebaseEntry>;include/llvm/Object/SymbolicFile.h
70 : public std::iterator<std::forward_iterator_tag, content_type> { 71 content_type Current; 74 content_iterator(content_type symb) : Current(std::move(symb)) {} 76 const content_type *operator->() const { return &Current; } 78 const content_type &operator*() const { return Current; }lib/Object/MachOObjectFile.cpp
3421 bool MachORebaseEntry::operator==(const MachORebaseEntry &Other) const { 3437 MachORebaseEntry Start(&Err, O, Opcodes, is64); 3440 MachORebaseEntry Finish(&Err, O, Opcodes, is64);tools/llvm-objdump/MachODump.cpp
10321 for (const object::MachORebaseEntry &Entry : Obj->rebaseTable(Err)) {
usr/include/c++/7.4.0/bits/move.h 98 move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/bits/stl_iterator_base_types.h 123 typedef _Tp value_type;
usr/include/c++/7.4.0/type_traits 1633 { typedef _Tp type; };