Home | History | Annotate | Download | only in AST

Lines Matching refs:decl

1196     NamedDecl *decl = *begin;
1197 if (isa<UnresolvedUsingValueDecl>(decl))
1199 if (isa<UsingShadowDecl>(decl))
1200 decl = cast<UsingShadowDecl>(decl)->getUnderlyingDecl();
1204 assert(isa<CXXMethodDecl>(decl) || isa<FunctionTemplateDecl>(decl));
1206 if (isa<FunctionTemplateDecl>(decl))
1207 decl = cast<FunctionTemplateDecl>(decl)->getTemplatedDecl();
1208 if (cast<CXXMethodDecl>(decl)->isStatic())
1335 Decl * const *Params)
1341 reinterpret_cast<Decl**>(this+1));
1347 ArrayRef<Decl *> Params) {