Home | History | Annotate | Download | only in AST

Lines Matching defs:nullptr

308     ExprIterator() : iterator_adaptor_base(nullptr) {}
323 ConstExprIterator() : iterator_adaptor_base(nullptr) {}
563 : Stmt(CompoundStmtClass), Body(nullptr), LBraceLoc(Loc), RBraceLoc(Loc) {
569 : Stmt(CompoundStmtClass, Empty), Body(nullptr) {
584 Stmt *body_front() { return !body_empty() ? Body[0] : nullptr; }
585 Stmt *body_back() { return !body_empty() ? Body[size()-1] : nullptr; }
601 return !body_empty() ? Body[0] : nullptr;
604 return !body_empty() ? Body[size() - 1] : nullptr;
657 : Stmt(SC), NextSwitchCase(nullptr), KeywordLoc(KWLoc), ColonLoc(ColonLoc) {
661 : Stmt(SC), NextSwitchCase(nullptr) {}
698 SubExprs[SUBSTMT] = nullptr;
845 std::fill_n(getAttrArrayPtr(), NumAttrs, nullptr);
892 Stmt *elsev = nullptr);
1372 explicit ReturnStmt(SourceLocation RL) : ReturnStmt(RL, nullptr, nullptr) {}
1441 Stmt(SC, Empty), Exprs(nullptr) { }
1585 Constraints(nullptr), Clobbers(nullptr), Names(nullptr) { }
1766 NumAsmToks(0), AsmToks(nullptr), Constraints(nullptr), Clobbers(nullptr) { }
2033 VarDecl *Var = nullptr);