Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp243 const FunctionDecl *FD = NE->getOperatorNew(); in checkPostStmt()
H A DMallocChecker.cpp1076 if (!isStandardNewDelete(NE->getOperatorNew(), C.getASTContext())) in processNewAllocation()
1437 << getOperatorSpelling(NE->getOperatorNew()->getOverloadedOperator()) in printAllocDeallocName()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp685 if (const FunctionDecl *FD = CNE->getOperatorNew()) { in VisitCXXNewAllocatorCall()
716 FunctionDecl *FD = CNE->getOperatorNew(); in VisitCXXNewExpr()
H A DExprEngineCallAndReturn.cpp634 if (CNE->getOperatorNew()->isReplaceableGlobalAllocationFunction()) { in bindReturnValue()
H A DExprEngine.cpp894 PostImplicitCall PP(NE->getOperatorNew(), NE->getBeginLoc(), LCtx); in ProcessNewAllocator()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DTextNodeDumper.cpp867 if (Node->getOperatorNew()) { in VisitCXXNewExpr()
869 dumpBareDeclRef(Node->getOperatorNew()); in VisitCXXNewExpr()
H A DExprCXX.cpp214 return getOperatorNew() in shouldNullCheckAllocation()
218 !getOperatorNew()->isReservedGlobalPlacementOperator(); in shouldNullCheckAllocation()
H A DStmtProfile.cpp1689 VisitDecl(S->getOperatorNew()); in VisitCXXNewExpr()
H A DASTImporter.cpp6892 E->getOperatorNew(), E->getOperatorDelete(), E->getTypeIdParens(), in VisitCXXNewExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h921 return getOriginExpr()->getOperatorNew(); in getDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprCXX.cpp674 if (E->getOperatorNew()->isReservedGlobalPlacementOperator()) in CalculateCookiePadding()
1553 FunctionDecl *allocator = E->getOperatorNew(); in EmitCXXNewExpr()
H A DItaniumCXXABI.cpp1955 (expr->getOperatorNew()->isReplaceableGlobalAllocationFunction() || in InitializeArrayCookie()
H A DCodeGenModule.cpp2358 SafeToInline = E->getOperatorNew()->hasAttr<DLLImportAttr>(); in VisitCXXNewExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1124 CT = canCalleeThrow(*this, E, cast<CXXNewExpr>(E)->getOperatorNew()); in canThrow()
H A DTreeTransform.h10270 if (E->getOperatorNew()) { in TransformCXXNewExpr()
10272 getDerived().TransformDecl(E->getBeginLoc(), E->getOperatorNew())); in TransformCXXNewExpr()
10289 OperatorNew == E->getOperatorNew() && in TransformCXXNewExpr()
H A DSemaExpr.cpp15883 if (E->getOperatorNew()) in VisitCXXNewExpr()
15884 S.MarkFunctionReferenced(E->getBeginLoc(), E->getOperatorNew()); in VisitCXXNewExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h881 return matchesDecl(Node.getOperatorNew(), Finder, Builder); in matchesSpecialized()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterStmt.cpp1497 Record.AddDeclRef(E->getOperatorNew()); in VisitCXXNewExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h2033 FunctionDecl *getOperatorNew() const { return OperatorNew; } in getOperatorNew() function