Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h294 CompoundStmtBitfields CompoundStmtBits; member
551 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
557 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
562 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty()
563 unsigned size() const { return CompoundStmtBits.NumStmts; } in size()
613 return child_range(&Body[0], &Body[0]+CompoundStmtBits.NumStmts); in children()
617 return child_range(&Body[0], &Body[0]+CompoundStmtBits.NumStmts); in children()
/external/clang/lib/AST/
DStmt.cpp259 CompoundStmtBits.NumStmts = Stmts.size(); in CompoundStmt()
260 assert(CompoundStmtBits.NumStmts == Stmts.size() && in CompoundStmt()
275 this->CompoundStmtBits.NumStmts = NumStmts; in setStmts()