Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DStmt.cpp367 CompoundStmtBits.NumStmts = Stmts.size(); in CompoundStmt()
368 CompoundStmtBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in CompoundStmt()
375 assert(CompoundStmtBits.NumStmts == Stmts.size() && in setStmts()
397 New->CompoundStmtBits.NumStmts = NumStmts; in CreateEmpty()
398 New->CompoundStmtBits.HasFPFeatures = HasFPFeatures; in CreateEmpty()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h1009 CompoundStmtBitfields CompoundStmtBits; in alignas() member
1431 return CompoundStmtBits.NumStmts; in numTrailingObjects()
1442 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
1443 CompoundStmtBits.HasFPFeatures = 0; in CompoundStmt()
1450 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty()
1451 unsigned size() const { return CompoundStmtBits.NumStmts; } in size()
1453 bool hasStoredFPFeatures() const { return CompoundStmtBits.HasFPFeatures; } in hasStoredFPFeatures()