Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DDecl.cpp4059 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()
/external/clang/include/clang/AST/
DDecl.h3640 llvm::PointerIntPair<Stmt *, 1, bool> BodyAndNothrow; variable