Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp368 CompoundStmtBits.NumStmts = Stmts.size(); in CompoundStmt()
369 CompoundStmtBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in CompoundStmt()
376 assert(CompoundStmtBits.NumStmts == Stmts.size() && in setStmts()
398 New->CompoundStmtBits.NumStmts = NumStmts; in CreateEmpty()
399 New->CompoundStmtBits.HasFPFeatures = HasFPFeatures; in CreateEmpty()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h1200 CompoundStmtBitfields CompoundStmtBits; in alignas() member
1627 return CompoundStmtBits.NumStmts; in numTrailingObjects()
1640 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
1641 CompoundStmtBits.HasFPFeatures = 0; in CompoundStmt()
1648 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty()
1649 unsigned size() const { return CompoundStmtBits.NumStmts; } in size()
1651 bool hasStoredFPFeatures() const { return CompoundStmtBits.HasFPFeatures; } in hasStoredFPFeatures()