reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Object/COFF.h
   38 class BaseRelocRef;

References

include/llvm/Object/COFF.h
   50 using base_reloc_iterator = content_iterator<BaseRelocRef>;
 1194   bool operator==(const BaseRelocRef &Other) const;
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/COFFObjectFile.cpp
 1631 bool BaseRelocRef::operator==(const BaseRelocRef &Other) const {
tools/llvm-readobj/COFFDumper.cpp
 1746   for (const BaseRelocRef &I : Obj->base_relocs()) {
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; };