Home | History | Annotate | Download | only in ASTMatchers

Lines Matching defs:RD

260   auto RD = internal::Matcher<RecordDecl>(Name).dynCastTo<Decl>();
261 // Matching VD first should not make a cache hit for RD.
263 decl(hasDescendant(VD), hasDescendant(RD))));
265 decl(hasDescendant(RD), hasDescendant(VD))));
266 // Not matching RD first should not make a cache hit for VD either.
268 decl(anyOf(hasDescendant(RD), hasDescendant(VD)))));