Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DUsedDeclVisitor.h60 if (E->getOperatorNew()) in VisitCXXNewExpr()
61 asImpl().visitUsedDecl(E->getBeginLoc(), E->getOperatorNew()); in VisitCXXNewExpr()
H A DSemaExceptionSpec.cpp1196 CT = canCalleeThrow(*this, NE, NE->getOperatorNew()); in canThrow()
H A DTreeTransform.h13385 if (E->getOperatorNew()) { in TransformCXXNewExpr()
13387 getDerived().TransformDecl(E->getBeginLoc(), E->getOperatorNew())); in TransformCXXNewExpr()
13404 OperatorNew == E->getOperatorNew() && in TransformCXXNewExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnyCall.h83 : E(NE), D(NE->getOperatorNew()), K(Allocator) {} in AnyCall()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp298 if (!NE->getOperatorNew()->isReservedGlobalPlacementOperator()) in checkPreStmt()
H A DMallocChecker.cpp1904 << getOperatorSpelling(NE->getOperatorNew()->getOverloadedOperator()) in printMemFnName()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp327 if (getOperatorNew()->getLangOpts().CheckNew) in shouldNullCheckAllocation()
329 return !getOperatorNew()->hasAttr<ReturnsNonNullAttr>() && in shouldNullCheckAllocation()
330 getOperatorNew() in shouldNullCheckAllocation()
334 !getOperatorNew()->isReservedGlobalPlacementOperator(); in shouldNullCheckAllocation()
H A DTextNodeDumper.cpp1594 if (Node->getOperatorNew()) { in VisitCXXNewExpr()
1596 dumpBareDeclRef(Node->getOperatorNew()); in VisitCXXNewExpr()
H A DJSONNodeDumper.cpp1405 if (const FunctionDecl *FD = NE->getOperatorNew()) in VisitCXXNewExpr()
H A DStmtProfile.cpp2125 VisitDecl(S->getOperatorNew()); in VisitCXXNewExpr()
H A DASTImporter.cpp8253 auto ToOperatorNew = importChecked(Err, E->getOperatorNew()); in VisitCXXNewExpr()
H A DExprConstant.cpp9899 FunctionDecl *OperatorNew = E->getOperatorNew(); in VisitCXXNewExpr()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp976 if (const FunctionDecl *FD = CNE->getOperatorNew()) { in VisitCXXNewAllocatorCall()
1005 FunctionDecl *FD = CNE->getOperatorNew(); in VisitCXXNewExpr()
H A DExprEngineCallAndReturn.cpp797 if (CNE && CNE->getOperatorNew()->isReplaceableGlobalAllocationFunction()) { in bindReturnValue()
H A DExprEngine.cpp1330 PostImplicitCall PP(NE->getOperatorNew(), NE->getBeginLoc(), LCtx, in ProcessNewAllocator()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp699 if (E->getOperatorNew()->isReservedGlobalPlacementOperator()) in CalculateCookiePadding()
1579 FunctionDecl *allocator = E->getOperatorNew(); in EmitCXXNewExpr()
H A DItaniumCXXABI.cpp2457 (expr->getOperatorNew()->isReplaceableGlobalAllocationFunction() || in InitializeArrayCookie()
H A DCodeGenModule.cpp3996 SafeToInline = E->getOperatorNew()->hasAttr<DLLImportAttr>(); in VisitCXXNewExpr()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h1132 return getOriginExpr()->getOperatorNew(); in getDecl()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1121 return matchesDecl(Node.getOperatorNew(), Finder, Builder);
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp1918 Record.AddDeclRef(E->getOperatorNew()); in VisitCXXNewExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h2343 FunctionDecl *getOperatorNew() const { return OperatorNew; } in getOperatorNew() function