Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DDeclCXX.cpp2282 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const { in isUsualDeallocationFunction()
2283 assert(PreventedBy.empty() && "PreventedBy is expected to be empty"); in isUsualDeallocationFunction()
2350 PreventedBy.push_back(FD); in isUsualDeallocationFunction()
/external/llvm-project/clang/lib/Sema/
DSemaExprCXX.cpp1534 SmallVector<const FunctionDecl*, 4> PreventedBy; in isUsualDeallocationFunction() local
1535 bool Result = Method->isUsualDeallocationFunction(PreventedBy); in isUsualDeallocationFunction()
1537 if (Result || !getLangOpts().CUDA || PreventedBy.empty()) in isUsualDeallocationFunction()
1542 return llvm::none_of(PreventedBy, [&](const FunctionDecl *FD) { in isUsualDeallocationFunction()
/external/llvm-project/clang/include/clang/AST/
DDeclCXX.h2003 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const;