Searched refs:UseGlobal (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseExprCXX.cpp | 3283 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXNewExpression() argument 3409 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, in ParseCXXNewExpression() 3496 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXDeleteExpression() argument 3558 return Actions.ActOnCXXDelete(Start, UseGlobal, /*ArrayForm=*/false, in ParseCXXDeleteExpression() 3575 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get()); in ParseCXXDeleteExpression()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 1908 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument 1973 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal, in ActOnCXXNew() 2030 ExprResult Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, in BuildCXXNew() argument 2321 AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both; in BuildCXXNew() 2509 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete, in BuildCXXNew() 3623 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXDelete() argument 3755 if (!UseGlobal && in ActOnCXXDelete() 3765 if (UseGlobal) in ActOnCXXDelete() 3846 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
|
H A D | TreeTransform.h | 3403 ExprResult RebuildCXXNewExpr(SourceLocation StartLoc, bool UseGlobal, in RebuildCXXNewExpr() argument 3411 return getSema().BuildCXXNew(StartLoc, UseGlobal, in RebuildCXXNewExpr()
|
/freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
H A D | Parser.h | 2083 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start); 2084 ExprResult ParseCXXDeleteExpression(bool UseGlobal,
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 8144 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 8151 BuildCXXNew(SourceRange Range, bool UseGlobal, SourceLocation PlacementLParen, 8236 ExprResult ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
|