Lines Matching refs:FD
61 const auto *FD = dyn_cast_or_null<FunctionDecl>(Call.getDecl()); in matches() local
62 if (!FD) in matches()
65 return matchesImpl(FD, Call.getNumArgs(), Call.parameters().size()); in matches()
69 const auto *FD = dyn_cast_or_null<FunctionDecl>(CE.getCalleeDecl()); in matchesAsWritten() local
70 if (!FD) in matchesAsWritten()
73 return matchesImpl(FD, CE.getNumArgs(), FD->param_size()); in matchesAsWritten()
79 const auto *FD = Callee; in matchesImpl() local
80 if (!FD) in matchesImpl()
84 return CheckerContext::isCLibraryFunction(FD, getFunctionName()) && in matchesImpl()
90 II = &FD->getASTContext().Idents.get(getFunctionName()); in matchesImpl()
146 if (!MatchNameOnly(*this, FD)) in matchesImpl()
152 return MatchQualifiedNameParts(*this, FD); in matchesImpl()