Searched refs:BodyAndNothrow (Results 1 – 2 of 2) sorted by relevance
5020 NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) {} in CapturedDecl()5034 Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); } in getBody()5035 void CapturedDecl::setBody(Stmt *B) { BodyAndNothrow.setPointer(B); } in setBody()5037 bool CapturedDecl::isNothrow() const { return BodyAndNothrow.getInt(); } in isNothrow()5038 void CapturedDecl::setNothrow(bool Nothrow) { BodyAndNothrow.setInt(Nothrow); } in setNothrow()
4425 llvm::PointerIntPair<Stmt *, 1, bool> BodyAndNothrow; variable