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

References

include/llvm/ObjectYAML/ELFYAML.h
  150   SectionKind Kind;
  163   Section(SectionKind Kind, bool IsImplicit = false)
  188   StackSizesSection() : Section(SectionKind::StackSizes) {}
  191     return S->Kind == SectionKind::StackSizes;
  203   DynamicSection() : Section(SectionKind::Dynamic) {}
  206     return S->Kind == SectionKind::Dynamic;
  215   RawContentSection() : Section(SectionKind::RawContent) {}
  218     return S->Kind == SectionKind::RawContent;
  225   NoBitsSection() : Section(SectionKind::NoBits) {}
  228     return S->Kind == SectionKind::NoBits;
  237   NoteSection() : Section(SectionKind::Note) {}
  238   static bool classof(const Section *S) { return S->Kind == SectionKind::Note; }
  247   HashSection() : Section(SectionKind::Hash) {}
  249   static bool classof(const Section *S) { return S->Kind == SectionKind::Hash; }
  269   VerneedSection() : Section(SectionKind::Verneed) {}
  272     return S->Kind == SectionKind::Verneed;
  290   AddrsigSection() : Section(SectionKind::Addrsig) {}
  292     return S->Kind == SectionKind::Addrsig;
  299   SymverSection() : Section(SectionKind::Symver) {}
  302     return S->Kind == SectionKind::Symver;
  318   VerdefSection() : Section(SectionKind::Verdef) {}
  321     return S->Kind == SectionKind::Verdef;
  331   Group() : Section(SectionKind::Group) {}
  334     return S->Kind == SectionKind::Group;
  349   RelocationSection() : Section(SectionKind::Relocation) {}
  352     return S->Kind == SectionKind::Relocation;
  359   SymtabShndxSection() : Section(SectionKind::SymtabShndxSection) {}
  362     return S->Kind == SectionKind::SymtabShndxSection;
  380   MipsABIFlags() : Section(SectionKind::MipsABIFlags) {}
  383     return S->Kind == SectionKind::MipsABIFlags;
lib/ObjectYAML/ELFEmitter.cpp
  224             ELFYAML::Section::SectionKind::RawContent, /*IsImplicit=*/true));
  241         ELFYAML::Section::SectionKind::RawContent, true /*IsImplicit*/);
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/bits/unique_ptr.h
  824     make_unique(_Args&&... __args)
  825     { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
usr/include/c++/7.4.0/type_traits
 1629     { typedef _Tp   type; };