Lines Matching defs:NE
1616 } else if (const CXXNewExpr *NE =
1618 if (NE->isArray()) {
1619 Arg = *NE->getArraySize();
1683 /// \returns true if the constructor invoked by \p NE has an argument of a
1685 static bool hasNonTrivialConstructorCall(const CXXNewExpr *NE) {
1687 const CXXConstructExpr *ConstructE = NE->getConstructExpr();
1691 if (!NE->getAllocatedType()->getAsCXXRecordDecl())
1719 const CXXNewExpr *NE = Call.getOriginExpr();
1727 if (!PM.isConsumedExpr(NE) && hasNonTrivialConstructorCall(NE))
1736 if (auto SizeEx = NE->getArraySize())
1741 State = MallocUpdateRefState(C, NE, State, Family, Target);
2069 if (const CXXNewExpr *NE = dyn_cast<CXXNewExpr>(E)) {
2071 << getOperatorSpelling(NE->getOperatorNew()->getOverloadedOperator())