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

Derived Classes

tools/clang/include/clang/AST/Decl.h
  828 class VarDecl : public DeclaratorDecl, public Redeclarable<VarDecl> {
 1785 class FunctionDecl : public DeclaratorDecl,
 2650 class FieldDecl : public DeclaratorDecl, public Mergeable<FieldDecl> {
tools/clang/include/clang/AST/DeclCXX.h
 3846 class MSPropertyDecl : public DeclaratorDecl {
tools/clang/include/clang/AST/DeclTemplate.h
 1253 class NonTypeTemplateParmDecl final

Declarations

gen/tools/clang/include/clang/AST/DeclNodes.inc
  371 ABSTRACT_DECL(DECLARATOR(Declarator, ValueDecl))
tools/clang/include/clang/Sema/ExternalSemaSource.h
   31 class DeclaratorDecl;
tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
   24   class DeclaratorDecl;
tools/clang/include/clang/Sema/Sema.h
  111   class DeclaratorDecl;
tools/clang/include/clang/Sema/Template.h
   34 class DeclaratorDecl;
tools/clang/include/clang/Serialization/ASTReader.h
   85 class DeclaratorDecl;
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
   37 class DeclaratorDecl;
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
   40 class DeclaratorDecl;
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
   38 class DeclaratorDecl;
tools/clang/lib/AST/CXXABI.h
   23 class DeclaratorDecl;
tools/lldb/include/lldb/Core/ClangForward.h
   44 class DeclaratorDecl;

References

include/llvm/ADT/STLExtras.h
   75       typename std::add_pointer<typename std::add_const<T>::type>::type;
include/llvm/Support/Casting.h
   57   static inline bool doit(const From &Val) {
   58     return To::classof(&Val);
  104   static inline bool doit(const From *Val) {
  106     return isa_impl<To, From>::doit(*Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
  172   using ret_type = To *;       // Pointer arg case, return Ty*
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  265   return cast_convert_val<X, Y*,
  266                           typename simplify_type<Y*>::SimpleType>::doit(Val);
  337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  366 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
include/llvm/Support/PointerLikeTypeTraits.h
   56   static inline void *getAsVoidPointer(T *P) { return P; }
   57   static inline T *getFromVoidPointer(void *P) { return static_cast<T *>(P); }
   59   enum { NumLowBitsAvailable = detail::ConstantLog2<alignof(T)>::value };
   91   typedef PointerLikeTypeTraits<T *> NonConst;
   93   static inline const void *getAsVoidPointer(const T *P) {
   96   static inline const T *getFromVoidPointer(const void *P) {
tools/clang/include/clang/AST/ASTContext.h
 2803   void addDeclaratorForUnnamedTagDecl(TagDecl *TD, DeclaratorDecl *DD);
 2805   DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD);
 3027     DeclaratorDecl *Decl;
 3032     SectionInfo(DeclaratorDecl *Decl,
tools/clang/include/clang/AST/ASTTypeTraits.h
   65     return ASTNodeKind(KindToKindId<T>::Id);
   65     return ASTNodeKind(KindToKindId<T>::Id);
   65     return ASTNodeKind(KindToKindId<T>::Id);
  251   const T *get() const {
  252     return BaseConverter<T>::get(NodeKind, Storage.buffer);
  259   const T &getUnchecked() const {
  260     return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer);
  394     static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
  395       if (ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))
  399     static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
  401       return *cast<T>(static_cast<const BaseT *>(
  469     : public DynCastPtrConverter<T, Decl> {};
tools/clang/include/clang/AST/Decl.h
  828 class VarDecl : public DeclaratorDecl, public Redeclarable<VarDecl> {
 1785 class FunctionDecl : public DeclaratorDecl,
 2650 class FieldDecl : public DeclaratorDecl, public Mergeable<FieldDecl> {
tools/clang/include/clang/AST/DeclCXX.h
 3846 class MSPropertyDecl : public DeclaratorDecl {
tools/clang/include/clang/AST/DeclFriend.h
  156       if (const auto *DD = dyn_cast<DeclaratorDecl>(ND)) {
  156       if (const auto *DD = dyn_cast<DeclaratorDecl>(ND)) {
tools/clang/include/clang/AST/DeclTemplate.h
 1254     : public DeclaratorDecl,
tools/clang/include/clang/AST/RecursiveASTVisitor.h
  511   bool TraverseDeclTemplateParameterLists(T *D);
  524   bool TraverseDeclaratorHelper(DeclaratorDecl *D);
 1940 bool RecursiveASTVisitor<Derived>::TraverseDeclaratorHelper(DeclaratorDecl *D) {
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  443 extern const internal::VariadicDynCastAllOfMatcher<Decl, DeclaratorDecl>
tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  302   virtual bool matches(const T &Node,
  309     return matches(DynNode.getUnchecked<T>(), Finder, Builder);
  345   DynTypedMatcher(MatcherInterface<T> *Implementation)
  346       : SupportedKind(ast_type_traits::ASTNodeKind::getFromNodeKind<T>()),
  436     return canConvertTo(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  445   template <typename T> Matcher<T> convertTo() const {
  447     return unconditionalConvertTo<T>();
  499   explicit Matcher(MatcherInterface<T> *Implementation)
  506   Matcher(const Matcher<From> &Other,
  507           typename std::enable_if<std::is_base_of<From, T>::value &&
  508                                !std::is_same<From, T>::value>::type * = nullptr)
  520             std::is_same<T, QualType>::value &&
  529     static_assert(std::is_base_of<To, T>::value, "Invalid dynCast call.");
  534   bool matches(const T &Node,
  581     return Other.dynCastTo(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  596 inline Matcher<T> makeMatcher(MatcherInterface<T> *Implementation) {
  596 inline Matcher<T> makeMatcher(MatcherInterface<T> *Implementation) {
 1243   operator Matcher<T>() const {
 1245                ast_type_traits::ASTNodeKind::getFromNodeKind<T>())
 1246         .template unconditionalConvertTo<T>();
 1255 class BindableMatcher : public Matcher<T> {
 1257   explicit BindableMatcher(const Matcher<T> &M) : Matcher<T>(M) {}
 1258   explicit BindableMatcher(MatcherInterface<T> *Implementation)
 1265   Matcher<T> bind(StringRef ID) const {
 1370 inline Matcher<T> DynTypedMatcher::unconditionalConvertTo() const {
 1376 BindableMatcher<T> makeAllOfComposite(
 1377     ArrayRef<const Matcher<T> *> InnerMatchers) {
 1388   using PI = llvm::pointee_iterator<const Matcher<T> *const *>;
 1395           ast_type_traits::ASTNodeKind::getFromNodeKind<T>(),
 1397           .template unconditionalConvertTo<T>());
 1408     ArrayRef<const Matcher<InnerT> *> InnerMatchers) {
 1557     : public VariadicFunction<BindableMatcher<SourceT>, Matcher<TargetT>,
 1558                               makeDynCastAllOfComposite<SourceT, TargetT>> {
tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
  199   ast_matchers::internal::Matcher<T> getTypedMatcher() const {
  202         ->template convertTo<T>();
  227       : MatcherOps(ast_type_traits::ASTNodeKind::getFromNodeKind<T>()) {}
  228   typedef ast_matchers::internal::Matcher<T> MatcherT;
  232     return DynTypedMatcher(Matcher.convertTo<T>());
tools/clang/include/clang/Sema/ExternalSemaSource.h
  117                  SmallVectorImpl<const DeclaratorDecl *> &Decls) {}
tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
  256                         SmallVectorImpl<const DeclaratorDecl*> &Decls) override;
tools/clang/include/clang/Sema/Sema.h
  341   static bool mightHaveNonExternalLinkage(const DeclaratorDecl *FD);
  666   typedef LazyVector<const DeclaratorDecl *, ExternalSemaSource,
 4288   bool ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const;
 4292   void MarkUnusedFileScopedDecl(const DeclaratorDecl *D);
 8968                     DeclaratorDecl *TheDecl);
tools/clang/include/clang/Sema/Template.h
  540     bool SubstQualifier(const DeclaratorDecl *OldDecl,
  541                         DeclaratorDecl *NewDecl);
tools/clang/include/clang/Serialization/ASTReader.h
 2010                        SmallVectorImpl<const DeclaratorDecl *> &Decls) override;
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
   82   const DeclaratorDecl *D;
   86   PointerToMemberData(const DeclaratorDecl *D,
   95   static void Profile(llvm::FoldingSetNodeID& ID, const DeclaratorDecl *D,
   99   const DeclaratorDecl *getDeclaratorDecl() const {return D;}
  228       const DeclaratorDecl *DD,
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
  236   DefinedSVal getMemberPointer(const DeclaratorDecl *DD);
  260   NonLoc makePointerToMember(const DeclaratorDecl *DD) {
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
  529       llvm::PointerUnion<const DeclaratorDecl *, const PointerToMemberData *>;
  537   const DeclaratorDecl *getDecl() const;
tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
   54     } else if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
   54     } else if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
tools/clang/lib/AST/ASTContext.cpp
10308                                                 DeclaratorDecl *DD) {
10312 DeclaratorDecl *ASTContext::getDeclaratorForUnnamedTagDecl(const TagDecl *TD) {
tools/clang/lib/AST/ASTImporter.cpp
  423     Error ImportTemplateParameterLists(const DeclaratorDecl *FromD,
  424                                        DeclaratorDecl *ToD);
 2867 Error ASTNodeImporter::ImportTemplateParameterLists(const DeclaratorDecl *FromD,
 2868                                                     DeclaratorDecl *ToD) {
tools/clang/lib/AST/CXXABI.h
   70                                               DeclaratorDecl *DD) = 0;
   72   virtual DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD) = 0;
tools/clang/lib/AST/Comment.cpp
  302     if (const auto *VD = dyn_cast<DeclaratorDecl>(CommentDecl))
  302     if (const auto *VD = dyn_cast<DeclaratorDecl>(CommentDecl))
tools/clang/lib/AST/CommentSema.cpp
  866   if (const auto *VD = dyn_cast<DeclaratorDecl>(ThisDeclInfo->CurrentDecl))
  866   if (const auto *VD = dyn_cast<DeclaratorDecl>(ThisDeclInfo->CurrentDecl))
tools/clang/lib/AST/Decl.cpp
 1805 static SourceLocation getTemplateOrInnerLocStart(const DeclT *decl) {
tools/clang/lib/AST/ItaniumCXXABI.cpp
  244                                       DeclaratorDecl *DD) override {}
  246   DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD) override {
tools/clang/lib/AST/MicrosoftCXXABI.cpp
   70   llvm::SmallDenseMap<TagDecl *, DeclaratorDecl *>
  120                                       DeclaratorDecl *DD) override {
  122     DD = cast<DeclaratorDecl>(DD->getCanonicalDecl());
  123     DeclaratorDecl *&I = UnnamedTagDeclToDeclaratorDecl[TD];
  128   DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD) override {
tools/clang/lib/AST/MicrosoftMangle.cpp
  952       if (DeclaratorDecl *DD =
tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  578 const internal::VariadicDynCastAllOfMatcher<Decl, DeclaratorDecl>
tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
   75     return Value.isMatcher() && Value.getMatcher().hasTypedMatcher<T>();
   78   static ast_matchers::internal::Matcher<T> get(const VariantValue &Value) {
   79     return Value.getMatcher().getTypedMatcher<T>();
   83     return ArgKind(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  361     RetTypes.push_back(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  466       ast_matchers::internal::VariadicDynCastAllOfMatcher<BaseT, DerivedT> Func,
  469         DerivedKind(ast_type_traits::ASTNodeKind::getFromNodeKind<DerivedT>()) {
  778     ast_matchers::internal::VariadicDynCastAllOfMatcher<BaseT, DerivedT>
tools/clang/lib/CodeGen/Address.h
  108 template <class U> inline U cast(CodeGen::Address addr) {
tools/clang/lib/CodeGen/CGCall.cpp
 2992     if (auto *DD = dyn_cast<DeclaratorDecl>(CurCodeDecl))
tools/clang/lib/CodeGen/CGDebugInfo.cpp
  346       if (const DeclaratorDecl *DD = Context.getDeclaratorForUnnamedTagDecl(RD))
tools/clang/lib/CodeGen/CGDebugInfo.h
  119   std::vector<std::pair<const DeclaratorDecl *, llvm::TrackingMDRef>>
tools/clang/lib/CodeGen/CodeGenModule.cpp
 4176     const DeclaratorDecl *D, GVALinkage Linkage, bool IsConstantVariable) {
tools/clang/lib/CodeGen/CodeGenModule.h
 1195   getLLVMLinkageForDeclarator(const DeclaratorDecl *D, GVALinkage Linkage,
tools/clang/lib/Index/IndexDecl.cpp
   81   void handleDeclarator(const DeclaratorDecl *D,
tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
  259                                 SmallVectorImpl<const DeclaratorDecl*> &Decls) {
tools/clang/lib/Sema/Sema.cpp
  577 static bool ShouldRemoveFromUnused(Sema *SemaRef, const DeclaratorDecl *D) {
tools/clang/lib/Sema/SemaAttr.cpp
  466                         DeclaratorDecl *Decl) {
tools/clang/lib/Sema/SemaDecl.cpp
 1614 bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) {
 1635 bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const {
 1698 void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) {
 3106 static void adjustDeclContextForDeclaratorDecl(DeclaratorDecl *NewD,
 3107                                                DeclaratorDecl *OldD) {
 6070 static void SetNestedNameSpecifier(Sema &S, DeclaratorDecl *DD, Declarator &D) {
12795 static bool hasDeducedAuto(DeclaratorDecl *DD) {
12807   DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
12810   DeclaratorDecl *FirstNonDeducedAutoInGroup = nullptr;
12817       if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
12817       if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
tools/clang/lib/Sema/SemaDeclAttr.cpp
   72   return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) ||
tools/clang/lib/Sema/SemaDeclCXX.cpp
 8481   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
 8481   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
tools/clang/lib/Sema/SemaInit.cpp
 7789           if (auto *DD = dyn_cast_or_null<DeclaratorDecl>(Entity.getDecl())) {
 7789           if (auto *DD = dyn_cast_or_null<DeclaratorDecl>(Entity.getDecl())) {
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
   42 static bool SubstQualifier(Sema &SemaRef, const DeclT *OldDecl, DeclT *NewDecl,
   42 static bool SubstQualifier(Sema &SemaRef, const DeclT *OldDecl, DeclT *NewDecl,
   67 bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
   68                                               DeclaratorDecl *NewDecl) {
 1200   if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
 1702   if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
tools/clang/lib/Serialization/ASTReader.cpp
 8682                                SmallVectorImpl<const DeclaratorDecl *> &Decls) {
 8684     DeclaratorDecl *D
 8685       = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
tools/clang/lib/Serialization/ASTReaderDecl.cpp
  367     void VisitDeclaratorDecl(DeclaratorDecl *DD);
  529   if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
  529   if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
  824 void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
  828     auto *Info = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
tools/clang/lib/Serialization/ASTWriterDecl.cpp
   88     void VisitDeclaratorDecl(DeclaratorDecl *D);
  271   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
  271   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
  520 void ASTDeclWriter::VisitDeclaratorDecl(DeclaratorDecl *D) {
tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
   45     llvm::FoldingSetNodeID& ID, const DeclaratorDecl *D,
  162     const DeclaratorDecl *DD, llvm::ImmutableList<const CXXBaseSpecifier *> L) {
  183   const DeclaratorDecl *DD = nullptr;
  186   if (PTMDT.isNull() || PTMDT.is<const DeclaratorDecl *>()) {
  187     if (PTMDT.is<const DeclaratorDecl *>())
  188       DD = PTMDT.get<const DeclaratorDecl *>();
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 1107         if (const auto *DD = dyn_cast<DeclaratorDecl>(DR->getDecl()))
 1107         if (const auto *DD = dyn_cast<DeclaratorDecl>(DR->getDecl()))
tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
  985           SVal SV = svalBuilder.getMemberPointer(cast<DeclaratorDecl>(VD));
tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  239 DefinedSVal SValBuilder::getMemberPointer(const DeclaratorDecl *DD) {
tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
  178 const DeclaratorDecl *nonloc::PointerToMember::getDecl() const {
  183   const DeclaratorDecl *DD = nullptr;
  184   if (PTMD.is<const DeclaratorDecl *>())
  185     DD = PTMD.get<const DeclaratorDecl *>();
  206   if (PTMD.is<const DeclaratorDecl *>())
  213   if (PTMD.is<const DeclaratorDecl *>())
tools/clang/tools/clang-extdef-mapping/ClangExtDefMapGen.cpp
   50   void addIfInMain(const DeclaratorDecl *DD, SourceLocation defStart);
   77 void MapExtDefNamesConsumer::addIfInMain(const DeclaratorDecl *DD,
tools/clang/tools/extra/clang-tidy/readability/MagicNumbersCheck.cpp
   29   const auto *AsDecl = Node.get<clang::DeclaratorDecl>();
   29   const auto *AsDecl = Node.get<clang::DeclaratorDecl>();
tools/clang/tools/extra/clangd/AST.cpp
  107   if (auto *V = llvm::dyn_cast<DeclaratorDecl>(&ND))
tools/clang/tools/extra/clangd/SemanticHighlighting.cpp
  258   bool VisitDeclaratorDecl(DeclaratorDecl *D) {
tools/clang/tools/extra/clangd/XRefs.cpp
  778   bool VisitDeclaratorDecl(DeclaratorDecl *D) {
tools/clang/tools/libclang/CIndex.cpp
  770 bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) {
 5596     } else if (const DeclaratorDecl *DD
 5597                     = dyn_cast_or_null<DeclaratorDecl>(getCursorDecl(cursor))) {
 6087     if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
 6087     if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
tools/clang/tools/libclang/CXType.cpp
  237     if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D))
  237     if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D))
tools/clang/tools/libclang/CursorVisitor.h
  212   bool VisitDeclaratorDecl(DeclaratorDecl *DD);
tools/clang/unittests/AST/ASTTypeTraitsTest.cpp
   25   return ASTNodeKind::getFromNodeKind<T>();
tools/lldb/source/Plugins/ExpressionParser/Clang/ASTUtils.h
  494       llvm::SmallVectorImpl<const clang::DeclaratorDecl *> &Decls) override {
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_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
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1580     { typedef _Tp const     type; };
 1629     { typedef _Tp   type; };
 1983     { typedef _Up     type; };
 1999     { typedef typename remove_reference<_Tp>::type*     type; };
 2003     : public __add_pointer_helper<_Tp>