Searched refs:SwitchStmtBits (Results 1 – 2 of 2) sorted by relevance
1057 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()1058 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()1059 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()1073 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()1074 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()1075 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()
1013 SwitchStmtBitfields SwitchStmtBits; in alignas() member2241 bool hasInitStorage() const { return SwitchStmtBits.HasInit; } in hasInitStorage()2244 bool hasVarStorage() const { return SwitchStmtBits.HasVar; } in hasVarStorage()2319 SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; } in getSwitchLoc()2320 void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; } in setSwitchLoc()2340 void setAllEnumCasesCovered() { SwitchStmtBits.AllEnumCasesCovered = true; } in setAllEnumCasesCovered()2345 return SwitchStmtBits.AllEnumCasesCovered; in isAllEnumCasesCovered()