Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h257 CompoundStmtBitfields CompoundStmtBits; in LLVM_ALIGNAS() member
564 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
570 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
575 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty()
576 unsigned size() const { return CompoundStmtBits.NumStmts; } in size()
638 return child_range(Body, Body + CompoundStmtBits.NumStmts); in children()
643 child_iterator(Body + CompoundStmtBits.NumStmts)); in children()
/external/clang/lib/AST/
DStmt.cpp285 CompoundStmtBits.NumStmts = Stmts.size(); in CompoundStmt()
286 assert(CompoundStmtBits.NumStmts == Stmts.size() && in CompoundStmt()
301 CompoundStmtBits.NumStmts = Stmts.size(); in setStmts()
302 assert(CompoundStmtBits.NumStmts == Stmts.size() && in setStmts()