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

References

include/llvm/ADT/AllocatorList.h
  141       : AllocatorT(std::move(X.getAlloc())), List(std::move(X.List)) {}
include/llvm/ADT/ilist.h
  201       : TraitsT(std::move(X)), IntrusiveListT(std::move(X)) {}
include/llvm/DebugInfo/DIContext.h
  293   LoadedObjectInfoHelper(Ts &&... Args) : Base(std::forward<Ts>(Args)...) {}
include/llvm/IR/IRBuilder.h
  801       : IRBuilderBase(C, FPMathTag, OpBundles), Inserter(std::move(I)),
lib/Transforms/IPO/Attributor.cpp
  593   AAReturnedFromReturnedValues(const IRPosition &IRP) : Base(IRP) {}
  655   AAArgumentFromCallSiteArguments(const IRPosition &IRP) : Base(IRP) {}
  671   AACallSiteReturnedFromReturned(const IRPosition &IRP) : Base(IRP) {}
  704   AAFromMustBeExecutedContext(const IRPosition &IRP) : Base(IRP) {}
unittests/Support/CommandLineTest.cpp
   59   explicit StackOption(Ts &&... Ms) : Base(std::forward<Ts>(Ms)...) {}
usr/include/c++/7.4.0/bits/hashtable_policy.h
 1091 	  : _Tp(std::forward<_OtherTp>(__tp))
usr/include/c++/7.4.0/bits/shared_ptr_base.h
  413       explicit _Sp_ebo_helper(const _Tp& __tp) : _Tp(__tp) { }
  414       explicit _Sp_ebo_helper(_Tp&& __tp) : _Tp(std::move(__tp)) { }
usr/include/c++/7.4.0/future
  273 	_Result_alloc(const _Alloc& __a) : _Result<_Res>(), _Alloc(__a)
 1443 	  : _Alloc(__a), _M_fn(std::forward<_Fn2>(__fn)) { }
usr/include/c++/7.4.0/tuple
   73     struct _Head_base<_Idx, _Head, true>
   74     : public _Head
   77       : _Head() { }
   79       constexpr _Head_base(const _Head& __h)
   80       : _Head(__h) { }
   87 	: _Head(std::forward<_UHead>(__h)) { }
   90       : _Head() { }
   94 	: _Head(allocator_arg, *__a._M_a) { }
   98 	: _Head(*__a._M_a) { }
  102 	: _Head(std::forward<_UHead>(__uhead)) { }
  106 	: _Head(allocator_arg, *__a._M_a, std::forward<_UHead>(__uhead)) { }
  110 	: _Head(std::forward<_UHead>(__uhead), *__a._M_a) { }
  112       static constexpr _Head&
  115       static constexpr const _Head&