Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp320 CompoundStmtBits.NumStmts = Stmts.size(); in CompoundStmt()
322 CompoundStmtBits.LBraceLoc = LB; in CompoundStmt()
326 assert(CompoundStmtBits.NumStmts == Stmts.size() && in setStmts()
344 New->CompoundStmtBits.NumStmts = NumStmts; in CreateEmpty()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h889 CompoundStmtBitfields CompoundStmtBits; in alignas() member
1261 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
1262 CompoundStmtBits.LBraceLoc = Loc; in CompoundStmt()
1268 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty()
1269 unsigned size() const { return CompoundStmtBits.NumStmts; } in size()
1330 SourceLocation getBeginLoc() const { return CompoundStmtBits.LBraceLoc; } in getBeginLoc()
1333 SourceLocation getLBracLoc() const { return CompoundStmtBits.LBraceLoc; } in getLBracLoc()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp167 S->CompoundStmtBits.LBraceLoc = ReadSourceLocation(); in VisitCompoundStmt()