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

References

include/llvm/ADT/STLExtras.h
 1002       std::is_same<T, U>::value || is_one_of<T, Ts...>::value;
 1002       std::is_same<T, U>::value || is_one_of<T, Ts...>::value;
include/llvm/Support/FormatVariadic.h
  253 inline auto formatv(const char *Fmt, Ts &&... Vals) -> formatv_object<decltype(
include/llvm/Support/FormatVariadicDetails.h
   48   explicit stream_operator_format_adapter(T &&Item)
  145 build_format_adapter(T &&Item) {
include/llvm/Support/ScopedPrinter.h
   61 template <class T> const std::string to_string(const T &Value) {
tools/clang/tools/extra/clangd/CodeComplete.cpp
 1596     SymbolRelevanceSignals Relevance;
 1599     Relevance.Query = SymbolRelevanceSignals::CodeComplete;
 1642         Relevance.Scope = SymbolRelevanceSignals::FileScope;
tools/clang/tools/extra/clangd/FindSymbols.cpp
  107     SymbolRelevanceSignals Relevance;
  109     Relevance.Query = SymbolRelevanceSignals::Generic;
tools/clang/tools/extra/clangd/Logger.h
   40 template <typename T> T &&wrap(T &&V) { return std::forward<T>(V); }
   40 template <typename T> T &&wrap(T &&V) { return std::forward<T>(V); }
   45 void log(Logger::Level L, const char *Fmt, Ts &&... Vals) {
tools/clang/tools/extra/clangd/Quality.cpp
  260 static SymbolRelevanceSignals::AccessibleScope
  273       return SymbolRelevanceSignals::FunctionScope;
  277     return SymbolRelevanceSignals::ClassScope;
  280     return SymbolRelevanceSignals::FileScope;
  281   return SymbolRelevanceSignals::GlobalScope;
  425                               const SymbolRelevanceSignals &S) {
tools/clang/tools/extra/clangd/Quality.h
  146                               const SymbolRelevanceSignals &);
tools/clang/tools/extra/clangd/index/dex/Dex.cpp
  125   SymbolRelevanceSignals PathProximitySignals;
  150   SymbolRelevanceSignals PreferredTypeSignals;
tools/clang/tools/extra/clangd/unittests/QualityTests.cpp
  119   SymbolRelevanceSignals Relevance;
  238   SymbolRelevanceSignals Default;
  241   SymbolRelevanceSignals Forbidden;
  245   SymbolRelevanceSignals PoorNameMatch;
  249   SymbolRelevanceSignals WithSemaFileProximity;
  255   SymbolRelevanceSignals WithSemaScopeProximity;
  260   SymbolRelevanceSignals WithIndexScopeProximity;
  265   SymbolRelevanceSignals IndexProximate;
  272   SymbolRelevanceSignals IndexDistant = IndexProximate;
  278   SymbolRelevanceSignals Scoped;
  279   Scoped.Scope = SymbolRelevanceSignals::FileScope;
  281   Scoped.Query = SymbolRelevanceSignals::CodeComplete;
  284   SymbolRelevanceSignals Instance;
  292   SymbolRelevanceSignals InBaseClass;
  297   SymbolRelevanceSignals WithoutMatchingWord;
  301   SymbolRelevanceSignals WithMatchingWord;
  308   SymbolRelevanceSignals Relevance;
  360   SymbolRelevanceSignals Cls;
  367   SymbolRelevanceSignals Ctor;
  387   SymbolRelevanceSignals Rel;
  478   SymbolRelevanceSignals RelevanceWithFixIt;
  483   SymbolRelevanceSignals RelevanceWithoutFixIt;
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  381     : public __is_pointer_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
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 2104     { typedef typename remove_cv<_Up>::type __type; };
utils/unittest/googletest/include/gtest/gtest-message.h
  116   inline Message& operator <<(const T& val) {
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   37   return StreamSwitch<T>::printable(V);
   54   const T& V;
   55   friend std::ostream &operator<<(std::ostream &S, const RawStreamProxy<T> &V) {
   69   static const RawStreamProxy<T> printable(const T &V) { return {V}; }
   69   static const RawStreamProxy<T> printable(const T &V) { return {V}; }