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

Declarations

include/llvm/Object/COFF.h
   40 class ExportDirectoryEntryRef;

References

include/llvm/Object/COFF.h
   48 using export_directory_iterator = content_iterator<ExportDirectoryEntryRef>;
 1144   bool operator==(const ExportDirectoryEntryRef &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/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
  130   for (const ExportDirectoryEntryRef &Ref : CoffObj->export_directories()) {
lib/Object/COFFObjectFile.cpp
  852   ExportDirectoryEntryRef Ref(ExportDirectory,
 1456 operator==(const ExportDirectoryEntryRef &Other) const {
tools/llvm-objdump/llvm-objdump.cpp
 1173     for (const auto &ExportEntry : COFFObj->export_directories()) {
tools/llvm-readobj/COFFDumper.cpp
 1700   for (const ExportDirectoryEntryRef &E : Obj->export_directories()) {
tools/sancov/sancov.cpp
  665     for (const object::ExportDirectoryEntryRef &Export :
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; };