| 294 | } |
| 295 | |
| 296 | std::string PredefinedColorToString(PredefinedColor c) |
| 297 | { |
| 298 | switch (c) |
| 299 | { |
| 300 | case PredefinedColor::None: return "NONE"; |
| 301 | case PredefinedColor::Red: return "RED"; |
| 302 | case PredefinedColor::Blue: return "BLUE"; |
| 303 | case PredefinedColor::Purple: return "PURPLE"; |
| 304 | case PredefinedColor::Yellow: return "YELLOW"; |
| 305 | case PredefinedColor::Pink: return "PINK"; |
| 306 | case PredefinedColor::Brown: return "BROWN"; |
| 307 | case PredefinedColor::Green: return "GREEN"; |
| 308 | case PredefinedColor::Orange: return "ORANGE"; |
| 309 | case PredefinedColor::DeepPurple: return "DEEPPURPLE"; |
| 310 | case PredefinedColor::LightBlue: return "LIGHTBLUE"; |
| 311 | case PredefinedColor::Cyan: return "CYAN"; |
| 312 | case PredefinedColor::Teal: return "TEAL"; |
| 313 | case PredefinedColor::Lime: return "LIME"; |
| 314 | case PredefinedColor::DeepOrange: return "DEEPORANGE"; |
| 315 | case PredefinedColor::Gray: return "GRAY"; |
| 316 | case PredefinedColor::BlueGray: return "BLUEGRAY"; |
| 317 | case PredefinedColor::Count: CHECK(false, ("Unknown predefined color")); return {}; |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | std::string AccessRulesToString(AccessRules accessRules) |
| 322 | { |
no outgoing calls
no test coverage detected