Home
last modified time | relevance | path

Searched refs:isStandardDelete (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp323 static bool isStandardDelete(const FunctionDecl *FD);
324 static bool isStandardDelete(const CallEvent &Call) { in isStandardDelete() function
327 return isStandardDelete(cast<FunctionDecl>(Call.getDecl())); in isStandardDelete()
333 return isStandardDelete(FD) || isStandardNew(FD); in isStandardNewDelete()
1117 static bool isStandardDelete(const FunctionDecl *FD) { in isStandardDelete() function
1640 if (isStandardDelete(Call)) { in evalCall()