Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp3465 bool ArrayForm, Expr *ExE) { in ActOnCXXDelete() argument
3475 bool ArrayFormAsWritten = ArrayForm; in ActOnCXXDelete()
3579 if (Pointee->isArrayType() && !ArrayForm) { in ActOnCXXDelete()
3583 ArrayForm = true; in ActOnCXXDelete()
3587 ArrayForm ? OO_Array_Delete : OO_Delete); in ActOnCXXDelete()
3597 if (ArrayForm) { in ActOnCXXDelete()
3623 /*WarnOnNonAbstractTypes=*/!ArrayForm, in ActOnCXXDelete()
3635 IsComplete && (!ArrayForm || UsualArrayDeleteWantsSize || in ActOnCXXDelete()
3681 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, in ActOnCXXDelete()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h2408 CXXDeleteExpr(QualType Ty, bool GlobalDelete, bool ArrayForm, in CXXDeleteExpr() argument
2414 CXXDeleteExprBits.ArrayForm = ArrayForm; in CXXDeleteExpr()
2424 bool isArrayForm() const { return CXXDeleteExprBits.ArrayForm; } in isArrayForm()
H A DStmt.h752 unsigned ArrayForm : 1; in alignas() local
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1906 E->CXXDeleteExprBits.ArrayForm = Record.readInt(); in VisitCXXDeleteExpr()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6341 bool UseGlobal, bool ArrayForm,