Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DUsedDeclVisitor.h60 if (E->getOperatorNew()) in VisitCXXNewExpr()
61 asImpl().visitUsedDecl(E->getBeginLoc(), E->getOperatorNew()); in VisitCXXNewExpr()
H A DSemaExceptionSpec.cpp1203 CT = canCalleeThrow(*this, NE, NE->getOperatorNew()); in canThrow()
H A DTreeTransform.h11745 if (E->getOperatorNew()) { in TransformCXXNewExpr()
11747 getDerived().TransformDecl(E->getBeginLoc(), E->getOperatorNew())); in TransformCXXNewExpr()
11764 OperatorNew == E->getOperatorNew() && in TransformCXXNewExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnyCall.h82 : E(NE), D(NE->getOperatorNew()), K(Allocator) {} in AnyCall()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCallGraph.cpp91 if (FunctionDecl *FD = E->getOperatorNew()) in VisitCXXNewExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp298 if (!NE->getOperatorNew()->isReservedGlobalPlacementOperator()) in checkPreStmt()
H A DPointerArithChecker.cpp242 const FunctionDecl *FD = NE->getOperatorNew(); in checkPostStmt()
H A DMallocChecker.cpp1649 << getOperatorSpelling(NE->getOperatorNew()->getOverloadedOperator()) in printMemFnName()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp813 if (const FunctionDecl *FD = CNE->getOperatorNew()) { in VisitCXXNewAllocatorCall()
842 FunctionDecl *FD = CNE->getOperatorNew(); in VisitCXXNewExpr()
H A DExprEngineCallAndReturn.cpp694 if (CNE && CNE->getOperatorNew()->isReplaceableGlobalAllocationFunction()) { in bindReturnValue()
H A DExprEngine.cpp945 PostImplicitCall PP(NE->getOperatorNew(), NE->getBeginLoc(), LCtx); in ProcessNewAllocator()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExprCXX.cpp278 return getOperatorNew() in shouldNullCheckAllocation()
282 !getOperatorNew()->isReservedGlobalPlacementOperator(); in shouldNullCheckAllocation()
H A DTextNodeDumper.cpp1183 if (Node->getOperatorNew()) { in VisitCXXNewExpr()
1185 dumpBareDeclRef(Node->getOperatorNew()); in VisitCXXNewExpr()
H A DJSONNodeDumper.cpp1214 if (const FunctionDecl *FD = NE->getOperatorNew()) in VisitCXXNewExpr()
H A DStmtProfile.cpp1951 VisitDecl(S->getOperatorNew()); in VisitCXXNewExpr()
H A DASTImporter.cpp7435 auto ToOperatorNew = importChecked(Err, E->getOperatorNew()); in VisitCXXNewExpr()
H A DExprConstant.cpp9332 FunctionDecl *OperatorNew = E->getOperatorNew(); in VisitCXXNewExpr()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprCXX.cpp685 if (E->getOperatorNew()->isReservedGlobalPlacementOperator()) in CalculateCookiePadding()
1559 FunctionDecl *allocator = E->getOperatorNew(); in EmitCXXNewExpr()
H A DItaniumCXXABI.cpp2214 (expr->getOperatorNew()->isReplaceableGlobalAllocationFunction() || in InitializeArrayCookie()
H A DCodeGenModule.cpp3082 SafeToInline = E->getOperatorNew()->hasAttr<DLLImportAttr>(); in VisitCXXNewExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h1017 return getOriginExpr()->getOperatorNew(); in getDecl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1129 return matchesDecl(Node.getOperatorNew(), Finder, Builder);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp1779 Record.AddDeclRef(E->getOperatorNew()); in VisitCXXNewExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprCXX.h2257 FunctionDecl *getOperatorNew() const { return OperatorNew; } in getOperatorNew() function