Home
last modified time | relevance | path

Searched refs:UseGlobal (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp3171 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXNewExpression() argument
3295 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, in ParseCXXNewExpression()
3382 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXDeleteExpression() argument
3444 return Actions.ActOnCXXDelete(Start, UseGlobal, /*ArrayForm=*/false, in ParseCXXDeleteExpression()
3461 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get()); in ParseCXXDeleteExpression()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp1878 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument
1943 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal, in ActOnCXXNew()
2000 ExprResult Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, in BuildCXXNew() argument
2290 AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both; in BuildCXXNew()
2478 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete, in BuildCXXNew()
3623 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXDelete() argument
3749 if (!UseGlobal && in ActOnCXXDelete()
3759 if (UseGlobal) in ActOnCXXDelete()
3840 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
H A DTreeTransform.h3352 ExprResult RebuildCXXNewExpr(SourceLocation StartLoc, bool UseGlobal, in RebuildCXXNewExpr() argument
3360 return getSema().BuildCXXNew(StartLoc, UseGlobal, in RebuildCXXNewExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2027 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start);
2028 ExprResult ParseCXXDeleteExpression(bool UseGlobal,
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6871 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
6878 BuildCXXNew(SourceRange Range, bool UseGlobal, SourceLocation PlacementLParen,
6935 bool UseGlobal, bool ArrayForm,