Home | History | Annotate | Download | only in Sema

Lines Matching defs:FDecl

490 void Sema::checkCall(NamedDecl *FDecl,
503 I = FDecl->specific_attr_begin<FormatAttr>(),
504 E = FDecl->specific_attr_end<FormatAttr>(); I != E ; ++I)
518 I = FDecl->specific_attr_begin<NonNullAttr>(),
519 E = FDecl->specific_attr_end<NonNullAttr>(); I != E; ++I)
524 i = FDecl->specific_attr_begin<ArgumentWithTypeTagAttr>(),
525 e = FDecl->specific_attr_end<ArgumentWithTypeTagAttr>(); i != e; ++i) {
532 void Sema::CheckConstructorCall(FunctionDecl *FDecl,
538 checkCall(FDecl, Args, Proto->getNumArgs(),
544 bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall,
547 isa<CXXMethodDecl>(FDecl);
550 VariadicCallType CallType = getVariadicCallType(FDecl, Proto,
562 checkCall(FDecl, llvm::makeArrayRef<const Expr *>(Args, NumArgs),
567 IdentifierInfo *FnInfo = FDecl->getIdentifier();
573 unsigned CMId = FDecl->getMemoryFunctionKind();
955 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
1059 unsigned BuiltinID = FDecl->getBuiltinID();
1219 NewBuiltinDecl = FDecl;
1593 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
1599 << FDecl->getDeclName() << Arg->getSourceRange();