Searched refs:SwitchStmtBits (Results 1 – 2 of 2) sorted by relevance
1059 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()
1204 SwitchStmtBitfields SwitchStmtBits; in alignas() member2444 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()