Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDecl.h3577 llvm::PointerIntPair<Stmt *, 1, bool> BodyAndNothrow; variable
3581 NumParams(NumParams), ContextParam(0), BodyAndNothrow(nullptr, false) { } in CapturedDecl()
3594 Stmt *getBody() const override { return BodyAndNothrow.getPointer(); } in getBody()
3595 void setBody(Stmt *B) { BodyAndNothrow.setPointer(B); } in setBody()
3597 bool isNothrow() const { return BodyAndNothrow.getInt(); } in isNothrow()
3598 void setNothrow(bool Nothrow = true) { BodyAndNothrow.setInt(Nothrow); }