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

References

include/llvm/CodeGen/DIE.h
  370   using ValTy = AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
  381   template <class T> void construct(T V) {
  382     static_assert(std::is_standard_layout<T>::value ||
  383                       std::is_pointer<T>::value,
  385     new (reinterpret_cast<void *>(Val.buffer)) T(V);
  388   template <class T> T *get() { return reinterpret_cast<T *>(Val.buffer); }
  389   template <class T> const T *get() const {
  392   template <class T> void destruct() { get<T>()->~T(); }
  692                     dwarf::Form Form, T &&Value) {
  693     return addValue(Alloc, DIEValue(Attribute, Form, std::forward<T>(Value)));
include/llvm/Support/AlignOf.h
   24   T t;
   25   AlignerImpl<Ts...> rest;
   35   char arr[sizeof(T)];
   36   SizerImpl<Ts...> rest;
   50       llvm::detail::SizerImpl<T, Ts...>)];
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/type_traits
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };