| 713 | static const int maximumCacheExtensionLength = 3; |
| 714 | |
| 715 | bool isNumeric(QStringView str) |
| 716 | { |
| 717 | if (str.isEmpty()) { |
| 718 | return false; |
| 719 | } |
| 720 | |
| 721 | return std::all_of(str.begin(), str.end(), [](const QChar c) { |
| 722 | return c.isNumber(); |
| 723 | }); |
| 724 | } |
| 725 | |
| 726 | class IconNameCache |
| 727 | { |
no test coverage detected