Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp3624 bool ArrayForm, Expr *ExE) { in ActOnCXXDelete() argument
3634 bool ArrayFormAsWritten = ArrayForm; in ActOnCXXDelete()
3744 if (Pointee->isArrayType() && !ArrayForm) { in ActOnCXXDelete()
3748 ArrayForm = true; in ActOnCXXDelete()
3752 ArrayForm ? OO_Array_Delete : OO_Delete); in ActOnCXXDelete()
3762 if (ArrayForm) { in ActOnCXXDelete()
3788 /*WarnOnNonAbstractTypes=*/!ArrayForm, in ActOnCXXDelete()
3800 IsComplete && (!ArrayForm || UsualArrayDeleteWantsSize || in ActOnCXXDelete()
3846 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h2507 CXXDeleteExpr(QualType Ty, bool GlobalDelete, bool ArrayForm, in CXXDeleteExpr() argument
2513 CXXDeleteExprBits.ArrayForm = ArrayForm; in CXXDeleteExpr()
2523 bool isArrayForm() const { return CXXDeleteExprBits.ArrayForm; } in isArrayForm()
H A DStmt.h907 unsigned ArrayForm : 1;
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1942 E->CXXDeleteExprBits.ArrayForm = Record.readInt(); in VisitCXXDeleteExpr()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h8237 bool ArrayForm, Expr *Operand);