Searched refs:DynNode (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp37 bool AllOfVariadicOperator(const ast_type_traits::DynTypedNode DynNode, argument
45 if (!InnerMatchers[i].matches(DynNode, Finder, Builder))
51 bool EachOfVariadicOperator(const ast_type_traits::DynTypedNode DynNode, argument
59 if (InnerMatchers[i].matches(DynNode, Finder, &BuilderInner)) {
68 bool AnyOfVariadicOperator(const ast_type_traits::DynTypedNode DynNode, argument
74 if (InnerMatchers[i].matches(DynNode, Finder, &Result)) {
H A DASTMatchFinder.cpp112 bool findMatch(const ast_type_traits::DynTypedNode &DynNode) { argument
114 if (const Decl *D = DynNode.get<Decl>())
116 else if (const Stmt *S = DynNode.get<Stmt>())
119 DynNode.get<NestedNameSpecifier>())
122 DynNode.get<NestedNameSpecifierLoc>())
124 else if (const QualType *Q = DynNode.get<QualType>())
126 else if (const TypeLoc *T = DynNode.get<TypeLoc>())
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h334 /// \brief Returns true if the matcher matches the given \c DynNode.
335 bool matches(const ast_type_traits::DynTypedNode DynNode, argument
337 return Storage->matches(DynNode, Finder, Builder);
393 virtual bool matches(const ast_type_traits::DynTypedNode DynNode,
427 bool matches(const ast_type_traits::DynTypedNode DynNode,
430 if (const T *Node = DynNode.get<T>()) {
1160 const ast_type_traits::DynTypedNode DynNode, ASTMatchFinder *Finder,
1277 bool AllOfVariadicOperator(const ast_type_traits::DynTypedNode DynNode,
1284 bool EachOfVariadicOperator(const ast_type_traits::DynTypedNode DynNode,
1291 bool AnyOfVariadicOperator(const ast_type_traits::DynTypedNode DynNode,
[all...]

Completed in 220 milliseconds