Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp2302 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const { in isUsualDeallocationFunction()
2303 assert(PreventedBy.empty() && "PreventedBy is expected to be empty"); in isUsualDeallocationFunction()
2370 PreventedBy.push_back(FD); in isUsualDeallocationFunction()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprCXX.cpp1563 SmallVector<const FunctionDecl*, 4> PreventedBy; in isUsualDeallocationFunction() local
1564 bool Result = Method->isUsualDeallocationFunction(PreventedBy); in isUsualDeallocationFunction()
1566 if (Result || !getLangOpts().CUDA || PreventedBy.empty()) in isUsualDeallocationFunction()
1571 return llvm::none_of(PreventedBy, [&](const FunctionDecl *FD) { in isUsualDeallocationFunction()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h2023 SmallVectorImpl<const FunctionDecl *> &PreventedBy) const;