Searched refs:UseGlobal (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseExprCXX.cpp | 3046 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXNewExpression() argument 3170 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, in ParseCXXNewExpression() 3259 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXDeleteExpression() argument 3321 return Actions.ActOnCXXDelete(Start, UseGlobal, /*ArrayForm=*/false, in ParseCXXDeleteExpression() 3338 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get()); in ParseCXXDeleteExpression()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprCXX.cpp | 1788 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument 1853 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal, in ActOnCXXNew() 1911 Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, in BuildCXXNew() argument 2187 AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both; in BuildCXXNew() 2378 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete, in BuildCXXNew() 3464 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXDelete() argument 3590 if (!UseGlobal && in ActOnCXXDelete() 3600 if (UseGlobal) in ActOnCXXDelete() 3681 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
|
| H A D | TreeTransform.h | 3107 bool UseGlobal, in RebuildCXXNewExpr() argument 3117 return getSema().BuildCXXNew(StartLoc, UseGlobal, in RebuildCXXNewExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 1968 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start); 1969 ExprResult ParseCXXDeleteExpression(bool UseGlobal,
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 6274 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 6280 ExprResult BuildCXXNew(SourceRange Range, bool UseGlobal, 6341 bool UseGlobal, bool ArrayForm,
|