/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 1399 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument 1466 return BuildCXXNew(SourceRange(StartLoc, D.getLocEnd()), UseGlobal, in ActOnCXXNew() 1499 Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, in BuildCXXNew() argument 1749 UseGlobal, AllocType, ArraySize, PlacementArgs, in BuildCXXNew() 1891 CXXNewExpr(Context, UseGlobal, OperatorNew, OperatorDelete, in BuildCXXNew() 1958 bool UseGlobal, QualType AllocType, in FindAllocationFunctions() argument 1995 if (AllocElemType->isRecordType() && !UseGlobal) { in FindAllocationFunctions() 2043 if (AllocElemType->isRecordType() && !UseGlobal) { in FindAllocationFunctions() 2842 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXDelete() argument 2965 if (!UseGlobal && in ActOnCXXDelete() [all …]
|
D | TreeTransform.h | 2584 bool UseGlobal, in RebuildCXXNewExpr() argument 2594 return getSema().BuildCXXNew(StartLoc, UseGlobal, in RebuildCXXNewExpr()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseExprCXX.cpp | 3060 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXNewExpression() argument 3184 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, in ParseCXXNewExpression() 3273 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXDeleteExpression() argument 3335 return Actions.ActOnCXXDelete(Start, UseGlobal, /*ArrayForm=*/false, in ParseCXXDeleteExpression() 3352 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get()); in ParseCXXDeleteExpression()
|
/external/clang/lib/Parse/ |
D | ParseExprCXX.cpp | 2695 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXNewExpression() argument 2807 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen, in ParseCXXNewExpression() 2896 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { in ParseCXXDeleteExpression() argument 2924 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.get()); in ParseCXXDeleteExpression()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 1742 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXNew() argument 1807 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal, in ActOnCXXNew() 1865 Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, in BuildCXXNew() argument 2141 AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both; in BuildCXXNew() 2332 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete, in BuildCXXNew() 3378 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, in ActOnCXXDelete() argument 3504 if (!UseGlobal && in ActOnCXXDelete() 3514 if (UseGlobal) in ActOnCXXDelete() 3595 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
|
D | TreeTransform.h | 2998 bool UseGlobal, in RebuildCXXNewExpr() argument 3008 return getSema().BuildCXXNew(StartLoc, UseGlobal, in RebuildCXXNewExpr()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1595 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start); 1596 ExprResult ParseCXXDeleteExpression(bool UseGlobal,
|
/external/llvm-project/clang/include/clang/Parse/ |
D | Parser.h | 1984 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start); 1985 ExprResult ParseCXXDeleteExpression(bool UseGlobal,
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 4766 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 4772 ExprResult BuildCXXNew(SourceRange Range, bool UseGlobal, 4787 bool UseGlobal, QualType AllocType, bool IsArray, 4810 bool UseGlobal, bool ArrayForm,
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 6060 ExprResult ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 6066 ExprResult BuildCXXNew(SourceRange Range, bool UseGlobal, 6127 bool UseGlobal, bool ArrayForm,
|