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

References

include/llvm/ADT/STLExtras.h
  154 auto adl_begin(ContainerTy &&container)
  162 auto adl_end(ContainerTy &&container)
  178 auto adl_begin(ContainerTy &&container)
  184 auto adl_end(ContainerTy &&container)
 1224 bool is_contained(R &&Range, const E &Element) {
lib/Target/Hexagon/HexagonBlockRanges.cpp
   75 void HexagonBlockRanges::RangeList::include(const RangeList &RL) {
  144   RangeList T;
  442     RangeList &RL = F->second;
  443     RangeList::iterator A = RL.begin(), Z = RL.end()-1;
  514                               const HexagonBlockRanges::RangeList &RL) {
  532     const HexagonBlockRanges::RangeList &RL = I.second;
lib/Target/Hexagon/HexagonBlockRanges.h
  114     void include(const RangeList &RL);
  142   using RegToRangeMap = std::map<RegisterRef, RangeList>;
  238       const HexagonBlockRanges::RangeList &RL);
lib/Target/Hexagon/HexagonFrameLowering.cpp
 2019       std::map<MachineBasicBlock *, HexagonBlockRanges::RangeList>;
 2134           HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
 2151       auto &RL = FIRangeMap[I.first].Map[&B];
 2163       auto &RL = FIRangeMap[I.first].Map[&B];
 2241       HexagonBlockRanges::RangeList &RL = FIRangeMap[FI].Map[&B];
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/range_access.h
   48     begin(_Container& __cont) -> decltype(__cont.begin())
   58     begin(const _Container& __cont) -> decltype(__cont.begin())
   68     end(_Container& __cont) -> decltype(__cont.end())
   78     end(const _Container& __cont) -> decltype(__cont.end())
usr/include/c++/7.4.0/bits/stl_map.h
  103       typedef _Tp					mapped_type;
  104       typedef std::pair<const _Key, _Tp>		value_type;
usr/include/c++/7.4.0/bits/stl_pair.h
  209     : private __pair_base<_T1, _T2>
  212       typedef _T2 second_type;   /// @c second_type is the second bound type
  215       _T2 second;                /// @c second is a copy of the second object
  252       using _PCCP = _PCC<true, _T1, _T2>;
  260       constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  283 			    _T1, _T2>;
  311        constexpr pair(_U1&& __x, const _T2& __y)
  318        explicit constexpr pair(_U1&& __x, const _T2& __y)
  380 		       is_copy_assignable<_T2>>::value,
  391 		       is_move_assignable<_T2>>::value,
usr/include/c++/7.4.0/type_traits
 1633     { typedef _Tp   type; };