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

References

include/llvm/DebugInfo/DWARF/DWARFUnit.h
  488       if (const auto *Contrib = IndexEntry->getOffset(DW_SECT_LINE))
include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
   55     std::unique_ptr<SectionContribution[]> Contributions;
   59     const SectionContribution *getOffset(DWARFSectionKind Sec) const;
   60     const SectionContribution *getOffset() const;
   62     const SectionContribution *getOffsets() const {
lib/DebugInfo/DWARF/DWARFUnit.cpp
  143   const auto *CUOff = E.getOffset(DW_SECT_INFO);
  188       if (const auto *C = IndexEntry->getOffset(DW_SECT_LOC))
  879   const auto *C =
lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
   59       std::make_unique<Entry::SectionContribution *[]>(Header.NumUnits);
   73         std::make_unique<Entry::SectionContribution[]>(Header.NumColumns);
   92     auto *Contrib = Contribs[i];
   99     auto *Contrib = Contribs[i];
  138     if (auto *Contribs = Row.Contributions.get()) {
  141         auto &Contrib = Contribs[i];
  150 const DWARFUnitIndex::Entry::SectionContribution *
  159 const DWARFUnitIndex::Entry::SectionContribution *
  182   const auto &InfoContrib = E->Contributions[InfoColumn];
tools/llvm-dwp/llvm-dwp.cpp
  201   DWARFUnitIndex::Entry::SectionContribution Contributions[8];
  210   const auto *Off = Entry.getOffset(Kind);
  232       auto &C = Entry.Contributions[Kind - DW_SECT_INFO];
  237     auto &C = Entry.Contributions[DW_SECT_TYPES - DW_SECT_INFO];
  259       auto &C = Entry.Contributions[DW_SECT_TYPES - DW_SECT_INFO];
  340                   &DWARFUnitIndex::Entry::SectionContribution::Offset);
  344                   &DWARFUnitIndex::Entry::SectionContribution::Length);
  609         auto &C = NewEntry.Contributions[Kind - DW_SECT_INFO];
usr/include/c++/7.4.0/bits/unique_ptr.h
  103         default_delete(const default_delete<_Up[]>&) noexcept { }
  107       typename enable_if<is_convertible<_Up(*)[], _Tp(*)[]>::value>::type
  107       typename enable_if<is_convertible<_Up(*)[], _Tp(*)[]>::value>::type
  108 	operator()(_Up* __ptr) const
  110 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  401 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  403       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  411 	  = __and_< is_base_of<_Tp, _Up>,
  412 		    __not_<is_same<__remove_cv<_Tp>, __remove_cv<_Up>>> >;
  412 		    __not_<is_same<__remove_cv<_Tp>, __remove_cv<_Up>>> >;
  412 		    __not_<is_same<__remove_cv<_Tp>, __remove_cv<_Up>>> >;
  415       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  416       using element_type  = _Tp;
  815     { typedef unique_ptr<_Tp[]> __array; };
  831     { return unique_ptr<_Tp>(new remove_extent_t<_Tp>[__num]()); }
  831     { return unique_ptr<_Tp>(new remove_extent_t<_Tp>[__num]()); }
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1950     { typedef _Tp     type; };
 1983     { typedef _Up     type; };