Searched refs:UseGlobal (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseExprCXX.cpp | 3155 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXNewExpression() argument 3280 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, in ParseCXXNewExpression() 3367 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXDeleteExpression() argument 3429 return Actions.ActOnCXXDelete(Start, UseGlobal, /*ArrayForm=*/false, in ParseCXXDeleteExpression() 3446 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get()); in ParseCXXDeleteExpression()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaExprCXX.cpp | 1846 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument 1911 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal, in ActOnCXXNew() 1968 ExprResult Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, in BuildCXXNew() argument 2250 AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both; in BuildCXXNew() 2437 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete, in BuildCXXNew() 3580 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXDelete() argument 3706 if (!UseGlobal && in ActOnCXXDelete() 3716 if (UseGlobal) in ActOnCXXDelete() 3797 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
|
| H A D | TreeTransform.h | 3263 ExprResult RebuildCXXNewExpr(SourceLocation StartLoc, bool UseGlobal, in RebuildCXXNewExpr() argument 3271 return getSema().BuildCXXNew(StartLoc, UseGlobal, in RebuildCXXNewExpr()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Parse/ |
| H A D | Parser.h | 2002 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start); 2003 ExprResult ParseCXXDeleteExpression(bool UseGlobal,
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 6719 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 6726 BuildCXXNew(SourceRange Range, bool UseGlobal, SourceLocation PlacementLParen, 6783 bool UseGlobal, bool ArrayForm,
|