Searched refs:BodyAndNothrow (Results 1 – 2 of 2) sorted by relevance
5356 NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) {} in CapturedDecl()5370 Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); } in getBody()5371 void CapturedDecl::setBody(Stmt *B) { BodyAndNothrow.setPointer(B); } in setBody()5373 bool CapturedDecl::isNothrow() const { return BodyAndNothrow.getInt(); } in isNothrow()5374 void CapturedDecl::setNothrow(bool Nothrow) { BodyAndNothrow.setInt(Nothrow); } in setNothrow()
4653 llvm::PointerIntPair<Stmt *, 1, bool> BodyAndNothrow; variable