Searched refs:UseGlobal (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseExprCXX.cpp | 2862 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXNewExpression() argument 2988 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, in ParseCXXNewExpression() 3047 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXDeleteExpression() argument 3109 return Actions.ActOnCXXDelete(Start, UseGlobal, /*ArrayForm=*/false, in ParseCXXDeleteExpression() 3126 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get()); in ParseCXXDeleteExpression()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprCXX.cpp | 2007 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument 2072 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal, in ActOnCXXNew() 2128 ExprResult Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, in BuildCXXNew() argument 2426 AllocationFunctionScope Scope = UseGlobal ? AllocationFunctionScope::Global in BuildCXXNew() 2624 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete, in BuildCXXNew() 3938 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXDelete() argument 4074 if (!UseGlobal && in ActOnCXXDelete() 4084 if (UseGlobal) in ActOnCXXDelete() 4188 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
|
| H A D | TreeTransform.h | 3450 ExprResult RebuildCXXNewExpr(SourceLocation StartLoc, bool UseGlobal, in RebuildCXXNewExpr() argument 3458 return getSema().BuildCXXNew(StartLoc, UseGlobal, in RebuildCXXNewExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 4911 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start); 4926 ExprResult ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start);
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 8470 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 8477 BuildCXXNew(SourceRange Range, bool UseGlobal, SourceLocation PlacementLParen, 8548 ExprResult ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
|