Home
last modified time | relevance | path

Searched refs:OperatorNew (Results 1 – 6 of 6) sorted by relevance

/external/stlport/test/eh/
Dnc_alloc.cpp183 static void* OperatorNew( size_t s ) { in OperatorNew() function
209 { return OperatorNew( s ); } in operator new()
214 return OperatorNew( size ); in operator new()
224 return OperatorNew( size ); in operator new[]()
230 return OperatorNew(size); in operator new[]()
/external/clang/lib/Sema/
DSemaExprCXX.cpp1239 FunctionDecl *OperatorNew = 0; in BuildCXXNew() local
1250 NumPlaceArgs, OperatorNew, OperatorDelete)) in BuildCXXNew()
1261 if (OperatorNew) { in BuildCXXNew()
1264 OperatorNew->getType()->getAs<FunctionProtoType>(); in BuildCXXNew()
1268 if (GatherArgumentsForCall(PlacementLParen, OperatorNew, in BuildCXXNew()
1277 DiagnoseSentinelCalls(OperatorNew, PlacementLParen, in BuildCXXNew()
1285 if (NumPlaceArgs == 0 && OperatorNew && in BuildCXXNew()
1286 (OperatorNew->isImplicit() || in BuildCXXNew()
1287 getSourceManager().isInSystemHeader(OperatorNew->getLocStart()))) { in BuildCXXNew()
1358 if (OperatorNew) in BuildCXXNew()
[all …]
DTreeTransform.h7234 FunctionDecl *OperatorNew = 0; in TransformCXXNewExpr() local
7236 OperatorNew = cast_or_null<FunctionDecl>( in TransformCXXNewExpr()
7239 if (!OperatorNew) in TransformCXXNewExpr()
7256 OperatorNew == E->getOperatorNew() && in TransformCXXNewExpr()
7261 if (OperatorNew) in TransformCXXNewExpr()
7262 SemaRef.MarkFunctionReferenced(E->getLocStart(), OperatorNew); in TransformCXXNewExpr()
/external/clang/include/clang/AST/
DExprCXX.h1429 FunctionDecl *OperatorNew; variable
1502 FunctionDecl *getOperatorNew() const { return OperatorNew; } in getOperatorNew()
1503 void setOperatorNew(FunctionDecl *D) { OperatorNew = D; } in setOperatorNew()
/external/clang/lib/AST/
DExprCXX.cpp60 SubExprs(0), OperatorNew(operatorNew), OperatorDelete(operatorDelete), in CXXNewExpr()
/external/clang/include/clang/Sema/
DSema.h3477 FunctionDecl *&OperatorNew,