Searched refs:BodyAndNothrow (Results 1 – 2 of 2) sorted by relevance
4059 NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) {} in CapturedDecl()4073 Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); } in getBody()4074 void CapturedDecl::setBody(Stmt *B) { BodyAndNothrow.setPointer(B); } in setBody()4076 bool CapturedDecl::isNothrow() const { return BodyAndNothrow.getInt(); } in isNothrow()4077 void CapturedDecl::setNothrow(bool Nothrow) { BodyAndNothrow.setInt(Nothrow); } in setNothrow()
3640 llvm::PointerIntPair<Stmt *, 1, bool> BodyAndNothrow; variable