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

References

include/llvm/Support/CommandLine.h
 1169   template <class Opt> static void opt(const Mod &M, Opt &O) { M.apply(O); }
 1217 void apply(Opt *O, const Mod &M, const Mods &... Ms) {
 1217 void apply(Opt *O, const Mod &M, const Mods &... Ms) {
 1218   applicator<Mod>::opt(M, *O);
 1222 template <class Opt, class Mod> void apply(Opt *O, const Mod &M) {
 1223   applicator<Mod>::opt(M, *O);
 1406   explicit opt(const Mods &... Ms)
 1591   explicit list(const Mods &... Ms)
 1794   explicit alias(const Mods &... Ms)
unittests/Support/CommandLineTest.cpp
   59   explicit StackOption(Ts &&... Ms) : Base(std::forward<Ts>(Ms)...) {}
   59   explicit StackOption(Ts &&... Ms) : Base(std::forward<Ts>(Ms)...) {}
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
  825     { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
usr/include/c++/7.4.0/type_traits
 1629     { typedef _Tp   type; };