Searched refs:SwitchStmtBits (Results 1 – 2 of 2) sorted by relevance
1045 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()1046 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()1047 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()1061 SwitchStmtBits.HasInit = HasInit; in SwitchStmt()1062 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()1063 SwitchStmtBits.AllEnumCasesCovered = false; in SwitchStmt()
1010 SwitchStmtBitfields SwitchStmtBits; member2180 bool hasInitStorage() const { return SwitchStmtBits.HasInit; } in hasInitStorage()2183 bool hasVarStorage() const { return SwitchStmtBits.HasVar; } in hasVarStorage()2258 SourceLocation getSwitchLoc() const { return SwitchStmtBits.SwitchLoc; } in getSwitchLoc()2259 void setSwitchLoc(SourceLocation L) { SwitchStmtBits.SwitchLoc = L; } in setSwitchLoc()2279 void setAllEnumCasesCovered() { SwitchStmtBits.AllEnumCasesCovered = true; } in setAllEnumCasesCovered()2284 return SwitchStmtBits.AllEnumCasesCovered; in isAllEnumCasesCovered()