Home | History | Annotate | Download | only in AST

Lines Matching refs:FD

525   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CurrentDecl)) {
527 return FD->getNameAsString();
532 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
543 const FunctionDecl *Decl = FD;
544 if (const FunctionDecl* Pattern = FD->getTemplateInstantiationPattern())
548 if (FD->hasWrittenPrototype())
563 FD->printQualifiedName(POut, Policy);
573 if (FD->getNumParams()) POut << ", ";
579 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
594 const DeclContext *Ctx = FD->getDeclContext();
621 = FD->getTemplateSpecializationInfo();
649 if (isa<CXXMethodDecl>(FD) &&
650 cast<CXXMethodDecl>(FD)->getParent()->isLambda())
657 else if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
2203 if (const Decl *FD = CE->getCalleeDecl()) {
2204 const FunctionDecl *Func = dyn_cast<FunctionDecl>(FD);
2206 : FD->hasAttr<WarnUnusedResultAttr>();
2214 FD->hasAttr<PureAttr>() || FD->hasAttr<ConstAttr>()) {
3025 const Decl *FD = cast<CallExpr>(this)->getCalleeDecl();
3026 bool IsPure = FD && (FD->hasAttr<ConstAttr>() || FD->hasAttr<PureAttr>());
3110 const FieldDecl *FD = cast<CXXDefaultInitExpr>(this)->getField();
3111 if (const Expr *E = FD->getInClassInitializer())