Searched refs:SwitchStmtBits (Results 1 – 2 of 2) sorted by relevance
1037 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()1038 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()1039 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()1053 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()1054 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()1055 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()
1010 SwitchStmtBitfields SwitchStmtBits; member2176 bool hasInitStorage() const { return SwitchStmtBits.HasInit; } in hasInitStorage()2179 bool hasVarStorage() const { return SwitchStmtBits.HasVar; } in hasVarStorage()2254 SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; } in getSwitchLoc()2255 void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; } in setSwitchLoc()2275 void setAllEnumCasesCovered() { SwitchStmtBits.AllEnumCasesCovered = true; } in setAllEnumCasesCovered()2280 return SwitchStmtBits.AllEnumCasesCovered; in isAllEnumCasesCovered()