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)
 1172 bool any_of(R &&Range, UnaryPredicate P) {
tools/clang/include/clang/AST/ASTContext.h
  664   template <typename NodeT> DynTypedNodeList getParents(const NodeT &Node) {
  668   DynTypedNodeList getParents(const ast_type_traits::DynTypedNode &Node);
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 6467   const auto &Parents = Finder->getASTContext().getParents(Node);
tools/clang/lib/AST/ASTContext.cpp
  922   static ASTContext::DynTypedNodeList getDynNodeFromMap(const NodeTy &Node,
  953   DynTypedNodeList getParents(const ast_type_traits::DynTypedNode &Node) {
10510 ASTContext::DynTypedNodeList
tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
  678     const auto &Parents = ActiveASTContext->getParents(Node);
tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
  386     const auto &Parents = AST.getParents(*S);
tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp
  353     auto Parents = Context.getParents(Loc);
  465     auto Parents = Context.getParents(Node);
  478     auto Parents = Context.getParents(Loc);
tools/clang/tools/extra/clang-tidy/bugprone/MultipleStatementMacroCheck.cpp
   25   auto Parents = Result.Context->getParents(*S);
tools/clang/tools/extra/clang-tidy/bugprone/SuspiciousMissingCommaCheck.cpp
   25   auto Parents = Ctx->getParents(*Lit);
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/ProBoundsArrayToPointerDecayCheck.cpp
   38     ASTContext::DynTypedNodeList Parents =
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertCheck.cpp
  395   auto Parents = Context->getParents(*E);
  582         auto Parents = Context->getParents(*Usage.Expression);
tools/clang/tools/extra/clang-tidy/modernize/UseNullptrCheck.cpp
  418       const auto &Parents = Context.getParents(Start);
tools/clang/tools/extra/clang-tidy/readability/MisleadingIndentationCheck.cpp
   21   auto parents = Context->getParents(*If);
tools/clang/tools/extra/clang-tidy/utils/ExprSequence.cpp
   31   ASTContext::DynTypedNodeList Parents = Context->getParents(*S);
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/type_traits
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
utils/unittest/googlemock/include/gmock/gmock-matchers.h
 1844   AssertionResult operator()(const char* value_text, const T& x) const {
 1856     const Matcher<const T&> matcher = SafeMatcherCast<const T&>(matcher_);
 1856     const Matcher<const T&> matcher = SafeMatcherCast<const T&>(matcher_);
utils/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h
  410   typedef RawContainer type;
  413   static const_reference ConstReference(const RawContainer& container) {
  415     testing::StaticAssertTypeEq<RawContainer,
  419   static type Copy(const RawContainer& container) { return container; }
utils/unittest/googletest/include/gtest/gtest-printers.h
  140   static void PrintValue(const T& value, ::std::ostream* os) {
  205     ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
  206   TypeWithoutFormatter<T,
  207       (internal::IsAProtocolMessage<T>::value ? kProtobuf :
  208        internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
  223 void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) {
  373                     const C& container, ::std::ostream* os) {
  439                     const T& value, ::std::ostream* os) {
  455 void PrintTo(const T& value, ::std::ostream* os) {
  478   DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
  699   static void Print(const T& value, ::std::ostream* os) {
  853 void UniversalPrint(const T& value, ::std::ostream* os) {
  856   typedef T T1;
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
   29   static const T& printable(const T& V) { return V; }
   29   static const T& printable(const T& V) { return V; }
   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);
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
  795 struct RemoveConst { typedef T type; };  // NOLINT
  797 struct RemoveConst<const T> { typedef T type; };  // NOLINT