Searched defs:OperatorNew (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/Analysis/
H A Dinline.cpp305 namespace OperatorNew { namespace
/external/clang/test/SemaTemplate/
H A Ddependent-names.cpp391 namespace OperatorNew { namespace
400 void *operator new(size_t, OperatorNew::X); // expected-note-re {{should be declared prior to the call site{{$}}}}
401 template void OperatorNew::f(OperatorNew::X); // expected-note {{instantiation of}}
/external/clang/include/clang/AST/
H A DExprCXX.h1625 FunctionDecl *OperatorNew; member in class:clang::CXXNewExpr
1705 FunctionDecl *getOperatorNew() const { return OperatorNew; }
1706 void setOperatorNew(FunctionDecl *D) { OperatorNew = D; }
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp1501 FunctionDecl *OperatorNew = nullptr; local
1509 OperatorNew, OperatorDelete))
1520 if (OperatorNew) {
1522 OperatorNew->getType()->getAs<FunctionProtoType>();
1529 if (GatherArgumentsForCall(PlacementLParen, OperatorNew, Proto, 1,
1537 DiagnoseSentinelCalls(OperatorNew, PlacementLParen, PlacementArgs);
1544 if (PlacementArgs.empty() && OperatorNew &&
1545 (OperatorNew->isImplicit() ||
1546 getSourceManager().isInSystemHeader(OperatorNew->getLocStart()))) {
1619 if (OperatorNew) {
1715 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, MultiExprArg PlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument
[all...]

Completed in 759 milliseconds