Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DDeclCXX.cpp2305 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const { in isUsualDeallocationFunction()
2306 assert(PreventedBy.empty() && "PreventedBy is expected to be empty"); in isUsualDeallocationFunction()
2373 PreventedBy.push_back(FD); in isUsualDeallocationFunction()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprCXX.cpp1623 SmallVector<const FunctionDecl*, 4> PreventedBy; in isUsualDeallocationFunction() local
1624 bool Result = Method->isUsualDeallocationFunction(PreventedBy); in isUsualDeallocationFunction()
1626 if (Result || !getLangOpts().CUDA || PreventedBy.empty()) in isUsualDeallocationFunction()
1631 return llvm::none_of(PreventedBy, [&](const FunctionDecl *FD) { in isUsualDeallocationFunction()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclCXX.h2057 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const;