Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1059 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()
1060 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
1061 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()
1075 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()
1076 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
1077 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h1204 SwitchStmtBitfields SwitchStmtBits; in alignas() member
2444 bool hasInitStorage() const { return SwitchStmtBits.HasInit; } in hasInitStorage()
2447 bool hasVarStorage() const { return SwitchStmtBits.HasVar; } in hasVarStorage()
2527 SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; } in getSwitchLoc()
2528 void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; } in setSwitchLoc()
2548 void setAllEnumCasesCovered() { SwitchStmtBits.AllEnumCasesCovered = true; } in setAllEnumCasesCovered()
2553 return SwitchStmtBits.AllEnumCasesCovered; in isAllEnumCasesCovered()